package
module
Version:
v0.0.3
Opens a new window with list of versions in this module.
Published: Sep 13, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
Documentation
¶
type Map interface {
Set
Get(key any) any
AddKV(key, value any)
IterateValues() <-chan any
}
func NewConcurrentMap(capacity int) Map
type Set interface {
Capacity() int
Size() int
Has(key any) bool
Add(key any)
Remove(key any)
Iterate() <-chan any
Clear()
}
func NewConcurrentSet(capacity int) Set
Source Files
¶
Click to show internal directories.
Click to hide internal directories.