7 lines
269 B
Go
7 lines
269 B
Go
// Package extypes provides small generic collection types for Go:
|
|
// Slice, Tuple, Set, HashMap, and a fixed-size concurrent Queue.
|
|
//
|
|
// The package is intentionally lightweight and stays close to the
|
|
// semantics of the underlying Go built-in types.
|
|
package extypes
|