package
Version:
v0.0.0-...-2e430cb
Opens a new window with list of versions in this module.
Published: Jun 13, 2024
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 Copyable interface {
MakeCopy() Copyable
}
type Queue[T any] interface {
Push(value T)
Pop() (*T, error)
Size() int64
IsEmpty() bool
}
type Stack[T any] interface {
Push(value T)
Pop() (*T, error)
Size() int64
IsEmpty() bool
}
Source Files
¶
Directories
¶
Click to show internal directories.
Click to hide internal directories.