| Server IP : 217.160.0.135 / Your IP : 216.73.217.37 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/go-1.23/test/typeparam/issue48716.dir/ |
Upload File : |
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"./a"
)
// Creates copy of set
func Copy[T comparable](src MapSet[T]) (dst MapSet[T]) {
dst = HashSet[T](src.Len())
Fill(src, dst)
return
}
// Fill src from dst
func Fill[T any](src, dst MapSet[T]) {
src.Iterate(func(t T) bool {
dst.Add(t)
return true
})
return
}
type MapSet[T any] struct {
m a.Map[T, struct{}]
}
func HashSet[T comparable](capacity int) MapSet[T] {
return FromMap[T](a.NewHashMap[T, struct{}](capacity))
}
func FromMap[T any](m a.Map[T, struct{}]) MapSet[T] {
return MapSet[T]{
m: m,
}
}
func (s MapSet[T]) Add(t T) {
s.m.Put(t, struct{}{})
}
func (s MapSet[T]) Len() int {
return s.m.Len()
}
func (s MapSet[T]) Iterate(cb func(T) bool) {
s.m.Iterate(func(p a.Pair[T, struct{}]) bool {
return cb(p.L)
})
}
func main() {
x := FromMap[int](a.NewHashMap[int, struct{}](1))
Copy[int](x)
}