package
Version:
v0.0.0-...-bd5f7e2
Opens a new window with list of versions in this module.
Published: Aug 9, 2025
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Queue interface {
Enqueue(val int)
Dequeue() (val int, ok bool)
Peek() (val int, ok bool)
Size() int
IsEmpty() bool
}
type Set interface {
Add(val int)
Del(val int)
Populate(vals ...int)
Contains(val int) (ok bool)
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.