col

package module
v1.1.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 13, 2025 License: Apache-2.0 Imports: 1 Imported by: 0

README

A Golang Collection package

linkedList

hashSet

linkedHashMap

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Collection

type Collection[E any] interface {
	Size() int
	IsEmpty() bool
	Contains(e E) bool
	ToSlice() []E
	Add(e E) bool
	Remove(e E) bool
	ContainsAll(col []E) bool
	AddAll(col []E) bool
	RemoveAll(col []E) bool
	Clear()
	json.Marshaler
	json.Unmarshaler
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL