ds

package
v1.0.54 Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2024 License: MIT Imports: 13 Imported by: 5

Documentation

Overview

Package ds queue copy from https://github.com/eapache/queue/blob/master/queue.go

Package ds BuiltinSet copy from https://github.com/chen3feng/stl4go/blob/master/builtin_set.go

Package ds stack copy from https://github.com/chen3feng/stl4go/blob/master/stack.go

Index

Constants

This section is empty.

Variables

View Source
var ErrorNotFound = errors.New("not found")

Functions

func BuildOrderTuples added in v1.0.53

func BuildOrderTuples[K ttypes.Ordered, V any](m map[K]V) []*ttypes.OrderTuple[K, V]

func DListIter added in v1.0.53

func DListIter[T any](a DList[T], iterate func(a DList[T], node T))

DListIter 迭代单向链表元素

func DListIterAllOk added in v1.0.53

func DListIterAllOk[T any](a DList[T], iterate func(a DList[T], node T) bool) bool

DListIterAllOk Returns true if all of the values pass the predicate truth test

func DListPartition added in v1.0.53

func DListPartition[T any](a DList[T], iterate func(a DList[T], node T) bool) (DList[T], DList[T])

DListPartition Split list into two lists: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate

func FpPartial added in v1.0.8

func FpPartial[T1, T2, R any](f func(a T1, b T2) R, arg1 T1) func(T2) R

FpPartial returns new function that, when called, has its first argument set to the provided value.

func FpPartial1 added in v1.0.8

func FpPartial1[T1, T2, R any](f func(T1, T2) R, arg1 T1) func(T2) R

FpPartial1 returns new function that, when called, has its first argument set to the provided value.

func FpPartial2 added in v1.0.8

func FpPartial2[T1, T2, T3, R any](f func(T1, T2, T3) R, arg1 T1) func(T2, T3) R

FpPartial2 returns new function that, when called, has its first argument set to the provided value.

func FpPartial3 added in v1.0.8

func FpPartial3[T1, T2, T3, T4, R any](f func(T1, T2, T3, T4) R, arg1 T1) func(T2, T3, T4) R

FpPartial3 returns new function that, when called, has its first argument set to the provided value.

func FpPartial4 added in v1.0.8

func FpPartial4[T1, T2, T3, T4, T5, R any](f func(T1, T2, T3, T4, T5) R, arg1 T1) func(T2, T3, T4, T5) R

FpPartial4 returns new function that, when called, has its first argument set to the provided value.

func FpPartial5 added in v1.0.8

func FpPartial5[T1, T2, T3, T4, T5, T6, R any](f func(T1, T2, T3, T4, T5, T6) R, arg1 T1) func(T2, T3, T4, T5, T6) R

FpPartial5 returns new function that, when called, has its first argument set to the provided value

func LowerBound added in v1.0.53

func LowerBound[T ttypes.Ordered](a []T, value T) int

LowerBound returns an index to the first element in the ascending ordered slice a that does not satisfy element < value (i.e. greater or equal to), or len(a) if no such element is found.

Complexity: O(log(len(a))).

func LowerBoundFunc added in v1.0.53

func LowerBoundFunc[T any](a []T, value T, less ttypes.LessFn[T]) int

LowerBoundFunc returns an index to the first element in the ordered slice a that does not satisfy less(element, value)), or len(a) if no such element is found.

The elements in the slice a should sorted according with compare func less.

Complexity: O(log(len(a))).

func MapConvertKeyToSlice added in v1.0.23

func MapConvertKeyToSlice[T comparable, V any](a map[T]V) []T

MapConvertKeyToSlice 提取map的key, 转成slice

func MapConvertValueToSlice added in v1.0.23

func MapConvertValueToSlice[T comparable, V any](a map[T]V) []V

MapConvertValueToSlice 提取map的Value转成slice

func MapConvertZipSliceToMap added in v1.0.23

func MapConvertZipSliceToMap[T comparable, V any](a []T, b []V) (map[T]V, error)

MapConvertZipSliceToMap 两个slice,一个key,一个value转换为map

func MapEqualCounter added in v1.0.7

func MapEqualCounter[V comparable](c map[V]int, other map[V]int) bool

func MapGetDefault added in v1.0.54

func MapGetDefault[K comparable, V any](m map[K]V, k K, d V) V

MapGetDefault 获取Map的值,如果不存在则返回默认值

func MapIter added in v1.0.23

func MapIter[K comparable, V any](a map[K]V, iterate func(k K, v V))

MapIter 只是迭代元素

func MapIterAllOk added in v1.0.23

func MapIterAllOk[K comparable, V any](a map[K]V, iterate func(k K, v V) bool) bool

MapIterAllOk Returns true if all of the values pass the predicate truth test

func MapIterFilter added in v1.0.23

func MapIterFilter[K comparable, V any](a map[K]V, iterate func(k K, v V) bool) map[K]V

MapIterFilter Looks through each value in the map, returning a map of all the values that pass a truth test (predicate).

func MapIterMapKVCopy added in v1.0.23

func MapIterMapKVCopy[K comparable, V any](a map[K]V, iterate func(k K, v V) (K, V)) map[K]V

MapIterMapKVCopy Produces a new map by mapping each key, value in map through a transformation function (iterate).

func MapIterMapKVInPlace added in v1.0.23

func MapIterMapKVInPlace[K comparable, V any](a map[K]V, iterate func(k K, v V) V) map[K]V

MapIterMapKVInPlace Map每个kv进行map映射

func MapIterPartition added in v1.0.23

func MapIterPartition[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V) bool) (map[K]V, map[K]V)

MapIterPartition Split map into two maps: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate

func MapOPMergeWithFn added in v1.0.54

func MapOPMergeWithFn[K comparable, V any](m1 map[K]V, m2 map[K]V, fn func(k K) V) map[K]V

MapOPMergeWithFn 合并两个map,如果key重复则从fn中获取新key

func MapOpAppendValue added in v1.0.27

func MapOpAppendValue[K comparable, V any](m map[K][]V, k K, v V) map[K][]V

func MapOpCopy added in v1.0.37

func MapOpCopy[K comparable, V any](m map[K]V) map[K]V

MapOpCopy 快速拷贝一个Map

func MapOpDeepCopy added in v1.0.37

func MapOpDeepCopy[K comparable, V any](m map[K]V) map[K]V

MapOpDeepCopy 深度拷贝一个Map

func MapOpMerge added in v1.0.23

func MapOpMerge[K comparable, V any](m1 map[K]V, m2 map[K]V) map[K]V

MapOpMerge 合并两个map,如果key重复则以第二个元素中的key为主

func MapOpPop added in v1.0.37

func MapOpPop[K comparable, V any](m map[K]V, k K) (V, bool)

MapOpPop 弹出Map中的元素

func MapOpRemoveValue added in v1.0.36

func MapOpRemoveValue[K comparable, V comparable](m map[K]V, dv V) map[K]V

MapOpRemoveValue 删除符合条件的值

func MapOpRemoveValueInSlice added in v1.0.36

func MapOpRemoveValueInSlice[K comparable, V comparable](m map[K][]V, dv V, del bool) map[K][]V

MapOpRemoveValueInSlice 删除符合条件的值

func MapOpSetIfEmpty added in v1.0.54

func MapOpSetIfEmpty[K comparable, V any](m map[K]V, k K, v V) (V, bool)

MapOpSetIfEmpty 设置Map的值,如果不存在则更新,返回值:key对应的值,是否更新

func PartQuickSort added in v1.0.46

func PartQuickSort[T ttypes.Ordered](data []T, k int, max bool) []T

func SListIter added in v1.0.53

func SListIter[T any](a SList[T], iterate func(a SList[T], node T))

SListIter 迭代单向链表元素

func SListIterAllOk added in v1.0.53

func SListIterAllOk[T any](a SList[T], iterate func(a SList[T], node T) bool) bool

SListIterAllOk Returns true if all of the values pass the predicate truth test

func SListPartition added in v1.0.53

func SListPartition[T any](a SList[T], iterate func(a SList[T], node T) bool) (SList[T], SList[T])

SListPartition Split list into two lists: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate

func SetIter added in v1.0.23

func SetIter[T comparable](a BuiltinSet[T], iterate func(node T))

SetIter 迭代元素

func SetIterAllOk added in v1.0.23

func SetIterAllOk[T comparable](a BuiltinSet[T], iterate func(node T) bool) bool

SetIterAllOk Returns true if all of the values pass the predicate truth test

func SetPartition added in v1.0.23

func SetPartition[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T) bool) (BuiltinSet[T], BuiltinSet[T])

SetPartition Split set into two sets: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate

func SetToMap added in v1.0.52

func SetToMap[K comparable, V any](u BuiltinSet[K], fn func(K) V) map[K]V

SetToMap convert set to map

func SetToSlice

func SetToSlice[K comparable](u BuiltinSet[K]) []K

SetToSlice convert set to slice

func SliceCmpAbsEqual added in v1.0.23

func SliceCmpAbsEqual[T comparable](a []T, b []T) bool

SliceCmpAbsEqual 判断两个slice是否一样,严格按照顺序比较

func SliceCmpAbsSub added in v1.0.23

func SliceCmpAbsSub[T comparable](a []T, b []T) int

SliceCmpAbsSub 判断b切片是否是a切片的子集,严格比较

func SliceCmpLogicEqual added in v1.0.23

func SliceCmpLogicEqual[T comparable](a []T, b []T) bool

SliceCmpLogicEqual 判断两个Slice是否逻辑一样,和顺序无关

func SliceCmpLogicSub added in v1.0.23

func SliceCmpLogicSub[T comparable](a []T, b []T) bool

SliceCmpLogicSub 判断b切片是否是a切片的子集

func SliceCmpTwoDiff added in v1.0.23

func SliceCmpTwoDiff[T comparable](a []T, b []T) ([]T, []T)

SliceCmpTwoDiff 显示两个切片的区别

func SliceConvertToInt added in v1.0.1

func SliceConvertToInt(data interface{}) ([]int, error)

SliceConvertToInt 切片集合统一转换为[]int

func SliceConvertToInt64 added in v1.0.1

func SliceConvertToInt64(data interface{}) ([]int64, error)

SliceConvertToInt64 切片集合统一转换为[]int64

func SliceConvertToString added in v1.0.1

func SliceConvertToString(data interface{}) ([]string, error)

SliceConvertToString 切片集合统一转换为[]string

func SliceExclude

func SliceExclude[T comparable](a []T, b T) bool

SliceExclude 判断元素是否不在slice中

func SliceGetCopy added in v1.0.23

func SliceGetCopy[T any](data []T, ns ...int) []T

SliceGetCopy 复制切片

func SliceGetFilter added in v1.0.23

func SliceGetFilter[T any](a []T, filter func(i int) bool) []T

SliceGetFilter 过滤slice

func SliceGetNthTail added in v1.0.35

func SliceGetNthTail[T any](data []T, nth int, d ...T) T

SliceGetNthTail 获取切片倒数第N个元素,如果没有则用默认值

func SliceGetOne added in v1.0.48

func SliceGetOne[T any](data []T) (T, error)

SliceGetOne 从切片中取出第一个元素

func SliceGetOnlyOne added in v1.0.48

func SliceGetOnlyOne[T any](data []T) (T, error)

SliceGetOnlyOne 切片只能有一个元素,并取出

func SliceGetTail added in v1.0.23

func SliceGetTail[T any](data []T, d ...T) T

SliceGetTail 获取切片最后一个元素,如果没有则用默认值

func SliceGroupByHandler added in v1.0.7

func SliceGroupByHandler[K comparable, V any](data []V, getKeyHandler func(int) K) map[K][]V

SliceGroupByHandler 对切片进行分类

func SliceGroupByHandlerUnique added in v1.0.25

func SliceGroupByHandlerUnique[K comparable, V any](data []V, getKeyHandler func(int) K) map[K]V

SliceGroupByHandlerUnique 对切片按照元素进行分类, 结果以map形式返回

func SliceGroupToCounter added in v1.0.23

func SliceGroupToCounter[V comparable](data []V) map[V]int

SliceGroupToCounter 对切片按照元素进行计数

func SliceGroupToMap added in v1.0.23

func SliceGroupToMap[V comparable](data []V) map[V][]V

SliceGroupToMap 对切片按照元素进行分类, 结果以map形式返回

func SliceGroupToPartitions added in v1.0.46

func SliceGroupToPartitions[T any](data []T, step int) [][]T

SliceGroupToPartitions 按照指定步长切割Slice

func SliceGroupToSlice added in v1.0.46

func SliceGroupToSlice[T any, V any](data []T, handler func(int) (V, bool)) []V

SliceGroupToSlice 切片转换为新的切片,一般用于提取其内部元素

func SliceGroupToSlices added in v1.0.23

func SliceGroupToSlices[V ttypes.Ordered](data []V) [][]V

SliceGroupToSlices 对切片按照元素进行分类,结果以二维数组形式返回

func SliceGroupToTwoMap added in v1.0.28

func SliceGroupToTwoMap[T comparable, K comparable, V any](data []V, groupT func(*V) T, groupK func(*V) K) map[T]map[K][]V

func SliceGroupUniqueByHandler added in v1.0.36

func SliceGroupUniqueByHandler[K comparable, V any](data []V, getKeyHandler func(int) K) map[K]V

SliceGroupUniqueByHandler 对切片进行分类

func SliceInclude

func SliceInclude[T comparable](a []T, b T) bool

SliceInclude 判断元素是否在slice中

func SliceIncludeBinarySearch added in v1.0.23

func SliceIncludeBinarySearch[T ttypes.Ordered](data []T, value T) int

SliceIncludeBinarySearch 二分搜索

func SliceIncludeIndex added in v1.0.23

func SliceIncludeIndex[T comparable](a []T, b T) int

SliceIncludeIndex 获取元素在切片中的下标,如果不存在返回-1

func SliceIncludeIndexUnpack added in v1.0.23

func SliceIncludeIndexUnpack[T comparable](a T, others ...T) int

SliceIncludeIndexUnpack 获取元素在切片中的下标,如果不存在返回-1

func SliceIncludeUnpack added in v1.0.23

func SliceIncludeUnpack[T comparable](a T, others ...T) bool

SliceIncludeUnpack 判断第一个元素是否在后续元素集合中

func SliceIncludeWithFn added in v1.0.26

func SliceIncludeWithFn[T comparable](a []T, fn func(a []T, i int) bool) bool

func SliceIncludeWithFnV2 added in v1.0.51

func SliceIncludeWithFnV2[T comparable](a []T, fn func(int) bool) bool

func SliceIter added in v1.0.23

func SliceIter[T any](a []T, iterate func(a []T, i int))

SliceIter 只是迭代元素

func SliceIterAllOk added in v1.0.23

func SliceIterAllOk[T any](a []T, iterate func(a []T, i int) bool) bool

func SliceIterAllOkV2 added in v1.0.51

func SliceIterAllOkV2[T any](a []T, iterate func(i int) bool) bool

SliceIterAllOkV2 Returns true if all of the values pass the predicate truth test

func SliceIterFilter added in v1.0.23

func SliceIterFilter[T any](a []T, iterate func(a []T, i int) bool) []T

SliceIterFilter Looks through each value in the slice, returning a slice of all the values that pass a truth test (predicate).

func SliceIterFilterV2 added in v1.0.50

func SliceIterFilterV2[T any](a []T, iterate func(i int) bool) []T

SliceIterFilterV2 Looks through each value in the slice, returning a slice of all the values that pass a truth test (predicate).

func SliceIterMapCopy added in v1.0.23

func SliceIterMapCopy[T any](a []T, iterate func(i int) T) []T

SliceIterMapCopy Produces a new slice by mapping each value in list through a transformation function (iterate).

func SliceIterMapInPlace added in v1.0.23

func SliceIterMapInPlace[T any](a []T, iterate func(i int) T) []T

SliceIterMapInPlace Slice每个元素进行map映射

func SliceIterPartition added in v1.0.23

func SliceIterPartition[T any](a []T, iterate func(a []T, i int) bool) ([]T, []T)

SliceIterPartition Split slice into two slices: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate

func SliceIterV2 added in v1.0.49

func SliceIterV2[T any](a []T, iterate func(i int))

SliceIterV2 只是迭代元素

func SliceMax

func SliceMax[T ttypes.Ordered](data []T) T

SliceMax 求数组的最大值

func SliceMaxN added in v1.0.7

func SliceMaxN[T ttypes.Ordered](data []T, n int) []T

SliceMaxN 返回切片中最大N个元素

func SliceMaxNWithOrder added in v1.0.7

func SliceMaxNWithOrder[T ttypes.Ordered](data []T, n int) []T

SliceMaxNWithOrder 按序返回切片中最大的N个元素

func SliceMaxUnpack added in v1.0.23

func SliceMaxUnpack[T ttypes.Ordered](data ...T) T

SliceMaxUnpack 求最大值

func SliceMin

func SliceMin[T ttypes.Ordered](data []T) T

SliceMin 求数组的最小值

func SliceMinN added in v1.0.7

func SliceMinN[T ttypes.Ordered](data []T, n int) []T

SliceMinN 获取切片中最小的N个元素

func SliceMinNWithOrder added in v1.0.7

func SliceMinNWithOrder[T ttypes.Ordered](data []T, n int) []T

SliceMinNWithOrder 有序返回切片中最小的N个元素

func SliceMinUnpack added in v1.0.23

func SliceMinUnpack[T ttypes.Ordered](data ...T) T

SliceMinUnpack 求最小值

func SliceOpInsert added in v1.0.23

func SliceOpInsert[T any](data *[]T, i int, x ...T)

SliceOpInsert 把元素插入到data的指定位置

func SliceOpJoinToString added in v1.0.47

func SliceOpJoinToString[T any](data []T, seps ...string) (string, error)

SliceOpJoinToString 切片合并成字符串

func SliceOpMerge added in v1.0.24

func SliceOpMerge[T any](first []T, second []T) []T

SliceOpMerge 合并两个切片

func SliceOpPopBack added in v1.0.23

func SliceOpPopBack[T any](data *[]T) (T, bool)

SliceOpPopBack 弹出切片最后一个元素

func SliceOpRemove added in v1.0.23

func SliceOpRemove[T comparable](data *[]T, b T)

SliceOpRemove 原地删除元素

func SliceOpRemoveIndex added in v1.0.23

func SliceOpRemoveIndex[T any](data *[]T, i int)

SliceOpRemoveIndex 删除某个索引位置的切片

func SliceOpRemoveMany added in v1.0.23

func SliceOpRemoveMany[T comparable](data *[]T, values []T)

SliceOpRemoveMany 从Slice集合中移除另外一个Slice中的元素

func SliceOpRemoveRange added in v1.0.23

func SliceOpRemoveRange[T any](data *[]T, i int, j int)

SliceOpRemoveRange 删除某个范围内的切片

func SliceOpReplace added in v1.0.23

func SliceOpReplace[T comparable](data []T, a T, b T)

SliceOpReplace 原地替换元素

func SliceOpReverse added in v1.0.23

func SliceOpReverse[T any](data []T)

SliceOpReverse 转置切片

func SliceOpReverseCopy added in v1.0.23

func SliceOpReverseCopy[T any](data []T) []T

SliceOpReverseCopy 转置切片并复制

func SliceOpShuffle added in v1.0.23

func SliceOpShuffle[T any](data []T)

SliceOpShuffle shuffle 切片

func SliceOpUnique added in v1.0.23

func SliceOpUnique[T comparable](data []T) []T

SliceOpUnique 去重切片

func SliceSetNthTail added in v1.0.42

func SliceSetNthTail[T any](data []T, nth int, d T)

SliceSetNthTail 设置切片倒数第N个元素

func SliceSetTail added in v1.0.42

func SliceSetTail[T any](data []T, d T)

SliceSetTail 设置切片最后一个元素值

func StrHasContainInsensitive added in v1.0.31

func StrHasContainInsensitive(str string, subStr string) bool

StrHasContainInsensitive 大小写无关的包含判断

func StrHasPrefixInsensitive added in v1.0.7

func StrHasPrefixInsensitive(str string, subStr string) bool

StrHasPrefixInsensitive 判断str是以subStr开始, subStr不关注大小写

func StrHasSuffixInsensitive added in v1.0.7

func StrHasSuffixInsensitive(str string, subStr string) bool

StrHasSuffixInsensitive 判断str是以subStr结尾, subStr不关注大小写

func StrRemoveHead added in v1.0.7

func StrRemoveHead(s string, n int) string

StrRemoveHead 删除str起始n个元素

func StrRemoveTail added in v1.0.7

func StrRemoveTail(s string, n int) string

StrRemoveTail 删除str末尾n个元素

func StrReverse added in v1.0.29

func StrReverse(s string) string

StrReverse 转置字符串

func StrSplitNth added in v1.0.7

func StrSplitNth(str string, sep string, total int, nth int) string

StrSplitNth 字符串分割按照sep分割,约定total个,返回第nth个元素 total == -1表示不关注total元素个数 nth <0 表示返回倒数第N个元素

func UpperBound added in v1.0.53

func UpperBound[T ttypes.Ordered](a []T, value T) int

UpperBound returns an index to the first element in the ascending ordered slice a such that value < element (i.e. strictly greater), or len(a) if no such element is found.

Complexity: O(log(len(a))).

func UpperBoundFunc added in v1.0.53

func UpperBoundFunc[T any](a []T, value T, less ttypes.LessFn[T]) int

UpperBoundFunc returns an index to the first element in the ordered slice a such that less(value, element)) is true (i.e. strictly greater), or len(a) if no such element is found.

The elements in the slice a should sorted according with compare func less.

Complexity: O(log(len(a))).

Types

type Bitmap added in v1.0.17

type Bitmap struct {
	// contains filtered or unexported fields
}

Bitmap is a mapping from some domain (for example, a range of integers) to bits. It is also called a bit array or bitmap index

func New added in v1.0.17

func New(size uint64) *Bitmap

New creates a new bitmap

func NewFromData added in v1.0.17

func NewFromData(data []byte) *Bitmap

NewFromData creates a bitmap from the exported data

func (*Bitmap) Clear added in v1.0.17

func (b *Bitmap) Clear()

Clear clear the bitmap's data

func (*Bitmap) Data added in v1.0.17

func (b *Bitmap) Data() []byte

Data returns the bitmap's internal data slice

func (*Bitmap) IsSet added in v1.0.17

func (b *Bitmap) IsSet(pos uint64) bool

IsSet returns true if the position pos is 1

func (*Bitmap) Resize added in v1.0.17

func (b *Bitmap) Resize(size uint64)

Resize resizes the bitmap with the passed size

func (*Bitmap) Set added in v1.0.17

func (b *Bitmap) Set(pos uint64) bool

Set sets 1 at position pos

func (*Bitmap) Size added in v1.0.17

func (b *Bitmap) Size() uint64

Size returns the bitmap's size in bit

func (*Bitmap) Unset added in v1.0.17

func (b *Bitmap) Unset(pos uint64) bool

Unset sets 0 at position pos

type BuiltinSet

type BuiltinSet[K comparable] map[K]struct{}

BuiltinSet is an associative container that contains an unordered set of unique objects of type K.

func MapConvertKeyToSet added in v1.0.24

func MapConvertKeyToSet[T comparable, V any](a map[T]V) BuiltinSet[T]

MapConvertKeyToSet 提取map的key,转成Set

func MapConvertValueToSet added in v1.0.37

func MapConvertValueToSet[T comparable, V comparable](a map[T]V) BuiltinSet[V]

MapConvertValueToSet 提取map的value转成Set

func NewSet

func NewSet[K comparable](n ...int) BuiltinSet[K]

func SetFromDList added in v1.0.52

func SetFromDList[K comparable](list *DList[K]) BuiltinSet[K]

SetFromDList 从单向链表构造Set集合

func SetFromMapKey added in v1.0.52

func SetFromMapKey[K comparable, V any](ks map[K]V) BuiltinSet[K]

SetFromMapKey 从map的key构造Set集合

func SetFromMapValue added in v1.0.52

func SetFromMapValue[K comparable, V comparable](ks map[K]V) BuiltinSet[V]

SetFromMapValue 从map的value构造Set集合

func SetFromSList added in v1.0.52

func SetFromSList[K comparable](list *SList[K]) BuiltinSet[K]

SetFromSList 从单向链表构造Set集合

func SetFromSlice

func SetFromSlice[K comparable](ks []K) BuiltinSet[K]

SetFromSlice create a new BuiltinSet object with the initial content from slice.

func SetFromUnpack added in v1.0.52

func SetFromUnpack[K comparable](ks ...K) BuiltinSet[K]

SetFromUnpack creates a new BuiltinSet object with the initial content from ks.

func SetIterFilter added in v1.0.23

func SetIterFilter[T comparable](a BuiltinSet[T], iterate func(node T) bool) BuiltinSet[T]

SetIterFilter Looks through each value in the set, returning a set of all the values that pass a truth test (predicate).

func SetIterMapCopy added in v1.0.23

func SetIterMapCopy[T comparable](a BuiltinSet[T], iterate func(node T) T) BuiltinSet[T]

SetIterMapCopy Produces a new list by mapping each value in list through a transformation function (iterate).

func SetIterMapInPlace added in v1.0.23

func SetIterMapInPlace[T comparable](a BuiltinSet[T], iterate func(node T) T) BuiltinSet[T]

SetIterMapInPlace Iterates over set, yielding each value in turn to an iterate function, Returns the set for chaining.

func SliceGroupToSet added in v1.0.23

func SliceGroupToSet[V comparable](data []V) BuiltinSet[V]

SliceGroupToSet 对切片按照元素进行分类,结果以Set形式返回

func (BuiltinSet[K]) Clear

func (s BuiltinSet[K]) Clear()

Clear implements the Container interface.

func (BuiltinSet[K]) Delete

func (s BuiltinSet[K]) Delete(k K)

Delete deletes an element from the set. It returns nothing, so it's faster than Remove.

func (BuiltinSet[K]) DeleteN added in v1.0.52

func (s BuiltinSet[K]) DeleteN(ks ...K)

DeleteN delete elements from the set

func (BuiltinSet[K]) Difference

func (s BuiltinSet[K]) Difference(other BuiltinSet[K]) BuiltinSet[K]

Difference returns a new set with elements in the set that are not in other.

func (BuiltinSet[K]) Equal added in v1.0.24

func (s BuiltinSet[K]) Equal(other BuiltinSet[K]) bool

func (BuiltinSet[K]) ForEach

func (s BuiltinSet[K]) ForEach(cb func(k K))

ForEach implements the Set interface.

func (BuiltinSet[K]) ForEachIf

func (s BuiltinSet[K]) ForEachIf(cb func(k K) bool)

ForEachIf implements the Container interface.

func (BuiltinSet[K]) Has

func (s BuiltinSet[K]) Has(k K) bool

Has implements the Set interface.

func (BuiltinSet[K]) Insert

func (s BuiltinSet[K]) Insert(k K) bool

Insert implements the Set interface.

func (BuiltinSet[K]) InsertN

func (s BuiltinSet[K]) InsertN(ks ...K) int

InsertN implements the Set interface.

func (BuiltinSet[K]) Intersection

func (s BuiltinSet[K]) Intersection(other BuiltinSet[K]) BuiltinSet[K]

Intersection returns a new set with elements common to the set and other.

func (BuiltinSet[K]) IsDisjointOf

func (s BuiltinSet[K]) IsDisjointOf(other BuiltinSet[K]) bool

IsDisjointOf return True if the set has no elements in common with other. Sets are disjoint if and only if their intersection is the empty set.

func (BuiltinSet[K]) IsEmpty

func (s BuiltinSet[K]) IsEmpty() bool

IsEmpty implements the Container interface.

func (BuiltinSet[K]) IsSubsetOf

func (s BuiltinSet[K]) IsSubsetOf(other BuiltinSet[K]) bool

IsSubsetOf tests whether every element in the set is in other.

func (BuiltinSet[K]) IsSupersetOf

func (s BuiltinSet[K]) IsSupersetOf(other BuiltinSet[K]) bool

IsSupersetOf tests whether every element in other is in the set.

func (BuiltinSet[K]) Keys

func (s BuiltinSet[K]) Keys() []K

Keys return a copy of all keys as a slice.

func (BuiltinSet[K]) Len

func (s BuiltinSet[K]) Len() int

Len implements the Container interface.

func (BuiltinSet[K]) Remove

func (s BuiltinSet[K]) Remove(k K) bool

Remove implements the Set interface.

func (BuiltinSet[K]) RemoveN

func (s BuiltinSet[K]) RemoveN(ks ...K) int

RemoveN implements the Set interface.

func (BuiltinSet[K]) String

func (s BuiltinSet[K]) String() string

String implements the fmt.Stringer interface.

func (BuiltinSet[K]) Union

func (s BuiltinSet[K]) Union(other BuiltinSet[K]) BuiltinSet[K]

Union returns a new set with elements from the set and other.

func (BuiltinSet[K]) Update

func (s BuiltinSet[K]) Update(other BuiltinSet[K])

Update adds all elements from other to set. set |= other.

type DList added in v1.0.17

type DList[T any] struct {
	// contains filtered or unexported fields
}

DList is a doubly linked list.

func DListFromUnpack added in v1.0.52

func DListFromUnpack[T any](vs ...T) *DList[T]

DListFromUnpack make a new DList from a serial of values.

func DListIterFilter added in v1.0.53

func DListIterFilter[T any](a DList[T], iterate func(a DList[T], node T) bool) DList[T]

DListIterFilter Looks through each value in the list, returning a list of all the values that pass a truth test (predicate).

func DListIterMapCopy added in v1.0.53

func DListIterMapCopy[T any](a DList[T], iterate func(a DList[T], node T) T) DList[T]

DListIterMapCopy Produces a new list by mapping each value in list through a transformation function (iterate).

func DListIterMapInPlace added in v1.0.53

func DListIterMapInPlace[T any](a DList[T], iterate func(a DList[T], node T) T) DList[T]

DListIterMapInPlace Iterates over list, yielding each value in turn to an iterate function, Returns the list for chaining.

func NewDList added in v1.0.52

func NewDList[T any]() *DList[T]

func SetToDList added in v1.0.52

func SetToDList[K comparable](u BuiltinSet[K]) *DList[K]

SetToDList SetToList convert set to list

func (*DList[T]) Back added in v1.0.17

func (l *DList[T]) Back() T

Back returns the last element in the container.

func (*DList[T]) Clear added in v1.0.17

func (l *DList[T]) Clear()

Clear cleanup the list.

func (*DList[T]) ForEach added in v1.0.17

func (l *DList[T]) ForEach(cb func(val T))

ForEach iterate the list, apply each element to the cb callback function.

func (*DList[T]) ForEachIf added in v1.0.17

func (l *DList[T]) ForEachIf(cb func(val T) bool)

ForEachIf iterate the list, apply each element to the cb callback function, stop if cb returns false.

func (*DList[T]) ForEachMutable added in v1.0.17

func (l *DList[T]) ForEachMutable(cb func(val *T))

ForEachMutable iterate the list, apply pointer of each element to the cb callback function.

func (*DList[T]) ForEachMutableIf added in v1.0.17

func (l *DList[T]) ForEachMutableIf(cb func(val *T) bool)

ForEachMutableIf iterate the list, apply pointer of each element to the cb callback function, stop if cb returns false.

func (*DList[T]) Front added in v1.0.17

func (l *DList[T]) Front() T

Front returns the first element in the container.

func (*DList[T]) InsertLessBound added in v1.0.53

func (l *DList[T]) InsertLessBound(v T, fn ttypes.LessEqFn[T])

func (*DList[T]) IsEmpty added in v1.0.17

func (l *DList[T]) IsEmpty() bool

IsEmpty return whether the list is empty.

func (*DList[T]) Iterate added in v1.0.17

func (l *DList[T]) Iterate() MutableIterator[T]

func (*DList[T]) Len added in v1.0.17

func (l *DList[T]) Len() int

Len return the length of the list.

func (*DList[T]) PopBack added in v1.0.17

func (l *DList[T]) PopBack() T

PopBack popups an element from the back of the list.

func (*DList[T]) PopFront added in v1.0.17

func (l *DList[T]) PopFront() T

PopFront popups an element from the front of the list.

func (*DList[T]) PushBack added in v1.0.17

func (l *DList[T]) PushBack(val T)

PushBack pushes an element at the back of the list.

func (*DList[T]) PushFront added in v1.0.17

func (l *DList[T]) PushFront(val T)

PushFront pushes an element at the front of the list.

func (*DList[T]) RemoveValue added in v1.0.53

func (l *DList[T]) RemoveValue(v T, fn ttypes.CompareFn[T]) bool

func (*DList[T]) TryPopBack added in v1.0.17

func (l *DList[T]) TryPopBack() (T, bool)

TryPopBack tries to pop up an element from the back of the list.

func (*DList[T]) TryPopFront added in v1.0.17

func (l *DList[T]) TryPopFront() (T, bool)

TryPopFront tries to pop up an element from the front of the list.

func (*DList[T]) Values added in v1.0.52

func (l *DList[T]) Values() []T

type Element added in v1.0.17

type Element[K, V any] struct {
	Node[K, V]
	// contains filtered or unexported fields
}

Element is a kind of node with key-value data

type Interface added in v1.0.37

type Interface interface {
	DeepCopy() interface{}
}

Interface for delegating copy process to type

type Iterator added in v1.0.1

type Iterator[T any] interface {
	IsNotEnd() bool // Whether it is point to the end of the range.
	MoveToNext()    // Let it point to the next element.
	Value() T       // Return the value of current element.
}

Iterator is the interface for container's iterator.

type MapCompareResult added in v1.0.1

type MapCompareResult int
const (
	LeftKeyMiss MapCompareResult = iota + 1
	RightKeyMiss
	AllKeyMiss
	NotEqual
	Equal
	LeftLargeThanRight
	LeftLessThanRight
)

func MapCmpFullComplexKey added in v1.0.23

func MapCmpFullComplexKey[T comparable, V any](a map[T]V, b map[T]V) MapCompareResult

MapCmpFullComplexKey 复杂值的全部比较

func MapCmpFullSimpleKey added in v1.0.23

func MapCmpFullSimpleKey[T comparable, V ttypes.Ordered](a map[T]V, b map[T]V) MapCompareResult

MapCmpFullSimpleKey 简单值的全部比较

func MapCmpWithComplexKey added in v1.0.23

func MapCmpWithComplexKey[T comparable, V any](a map[T]V, b map[T]V, key T) MapCompareResult

MapCmpWithComplexKey 复杂值的key比较

func MapCmpWithSimpleKey added in v1.0.23

func MapCmpWithSimpleKey[T comparable, V ttypes.Ordered](a map[T]V, b map[T]V, key T) MapCompareResult

MapCmpWithSimpleKey 简单值的key比较

type MapLocker

type MapLocker[K comparable, V any] struct {
	// contains filtered or unexported fields
}

MapLocker 带锁的map,用于简单的并发读写场景

func MapNewMapLocker added in v1.0.7

func MapNewMapLocker[K comparable, V any]() *MapLocker[K, V]

func (*MapLocker[K, V]) Contain

func (m *MapLocker[K, V]) Contain(key K) bool

func (*MapLocker[K, V]) Foreach

func (m *MapLocker[K, V]) Foreach(handler func(key K, value V))

func (*MapLocker[K, V]) Get

func (m *MapLocker[K, V]) Get(key K) (V, bool)

func (*MapLocker[K, V]) Set

func (m *MapLocker[K, V]) Set(key K, value V)

type MapRWLocker

type MapRWLocker[K comparable, V any] struct {
	// contains filtered or unexported fields
}

MapRWLocker 简单的读写锁map

func MapNewMapRWLocker added in v1.0.7

func MapNewMapRWLocker[K comparable, V any]() *MapRWLocker[K, V]

func (*MapRWLocker[K, V]) Contain

func (m *MapRWLocker[K, V]) Contain(key K) bool

func (*MapRWLocker[K, V]) Foreach

func (m *MapRWLocker[K, V]) Foreach(handler func(key K, value V))

func (*MapRWLocker[K, V]) Get

func (m *MapRWLocker[K, V]) Get(key K) (V, bool)

func (*MapRWLocker[K, V]) Set

func (m *MapRWLocker[K, V]) Set(key K, value V)

type MutableIterator added in v1.0.1

type MutableIterator[T any] interface {
	Iterator[T]
	Pointer() *T // Return the pointer to the value of current element.
}

MutableIterator is the interface for container's mutable iterator.

type NamedTuple2E added in v1.0.29

type NamedTuple2E[A any, B any] struct {
	TupleName
	E1 A
	E2 B
}

func NewNamedTuple2E added in v1.0.29

func NewNamedTuple2E[A any, B any](na string, a A, nb string, b B) *NamedTuple2E[A, B]

func (*NamedTuple2E[A, B]) Get added in v1.0.29

func (nt *NamedTuple2E[A, B]) Get(name string) interface{}

func (*NamedTuple2E[A, B]) Unpack added in v1.0.29

func (nt *NamedTuple2E[A, B]) Unpack() (A, B)

type NamedTuple3E added in v1.0.29

type NamedTuple3E[A any, B any, C any] struct {
	NamedTuple2E[A, B]
	E3 C
}

func NewNamedTuple3E added in v1.0.29

func NewNamedTuple3E[A any, B any, C any](na string, a A, nb string, b B, nc string, c C) *NamedTuple3E[A, B, C]

func (*NamedTuple3E[A, B, C]) Get added in v1.0.29

func (nt *NamedTuple3E[A, B, C]) Get(name string) interface{}

func (*NamedTuple3E[A, B, C]) Unpack added in v1.0.29

func (nt *NamedTuple3E[A, B, C]) Unpack() (A, B, C)

type NamedTuple4E added in v1.0.29

type NamedTuple4E[A any, B any, C any, D any] struct {
	NamedTuple3E[A, B, C]
	E4 D
}

func NewNamedTuple4E added in v1.0.29

func NewNamedTuple4E[A any, B any, C any, D any](na string, a A, nb string, b B, nc string, c C, nd string, d D) *NamedTuple4E[A, B, C, D]

func (*NamedTuple4E[A, B, C, D]) Get added in v1.0.29

func (nt *NamedTuple4E[A, B, C, D]) Get(name string) interface{}

func (*NamedTuple4E[A, B, C, D]) Unpack added in v1.0.29

func (nt *NamedTuple4E[A, B, C, D]) Unpack() (A, B, C, D)

type NamedTuple5E added in v1.0.29

type NamedTuple5E[A any, B any, C any, D any, E any] struct {
	NamedTuple4E[A, B, C, D]
	E5 E
}

func NewNamedTuple5E added in v1.0.29

func NewNamedTuple5E[A any, B any, C any, D any, E any](na string, a A, nb string, b B, nc string, c C, nd string, d D, ne string, e E) *NamedTuple5E[A, B, C, D, E]

func (*NamedTuple5E[A, B, C, D, E]) Get added in v1.0.29

func (nt *NamedTuple5E[A, B, C, D, E]) Get(name string) interface{}

func (*NamedTuple5E[A, B, C, D, E]) Unpack added in v1.0.29

func (nt *NamedTuple5E[A, B, C, D, E]) Unpack() (A, B, C, D, E)

type Node added in v1.0.17

type Node[K, V any] struct {
	// contains filtered or unexported fields
}

Node is a list node

type Option added in v1.0.17

type Option func(option *Options)

Option is a function used to set Options

func WithMaxLevel added in v1.0.17

func WithMaxLevel(maxLevel int) Option

WithMaxLevel sets max level of Skiplist

type Options added in v1.0.17

type Options struct {
	// contains filtered or unexported fields
}

Options holds Skiplist's options

type OrderSet added in v1.0.53

type OrderSet[K ttypes.Ordered] struct {
	// contains filtered or unexported fields
}

func NewOrderSet added in v1.0.53

func NewOrderSet[K ttypes.Ordered]() *OrderSet[K]

func OrderSetFromSet added in v1.0.53

func OrderSetFromSet[K ttypes.Ordered](set BuiltinSet[K]) *OrderSet[K]

func OrderSetFromUnpack added in v1.0.53

func OrderSetFromUnpack[K ttypes.Ordered](ks ...K) *OrderSet[K]

func (*OrderSet[K]) Clear added in v1.0.53

func (o *OrderSet[K]) Clear()

Clear implements the Container interface.

func (*OrderSet[K]) Delete added in v1.0.53

func (o *OrderSet[K]) Delete(k K)

func (*OrderSet[K]) DeleteN added in v1.0.53

func (o *OrderSet[K]) DeleteN(ks ...K)

func (*OrderSet[K]) Difference added in v1.0.53

func (o *OrderSet[K]) Difference(other *OrderSet[K]) *OrderSet[K]

Difference returns a new set with elements in the set that are not in other.

func (*OrderSet[K]) Equal added in v1.0.53

func (o *OrderSet[K]) Equal(other *OrderSet[K]) bool

func (*OrderSet[K]) ForEach added in v1.0.53

func (o *OrderSet[K]) ForEach(cb func(k K))

ForEach implements the Set interface.

func (*OrderSet[K]) ForEachIf added in v1.0.53

func (o *OrderSet[K]) ForEachIf(cb func(k K) bool)

ForEachIf implements the Container interface.

func (*OrderSet[K]) Has added in v1.0.53

func (o *OrderSet[K]) Has(k K) bool

Has implements the Set interface.

func (*OrderSet[K]) Insert added in v1.0.53

func (o *OrderSet[K]) Insert(k K) bool

func (*OrderSet[K]) InsertN added in v1.0.53

func (o *OrderSet[K]) InsertN(ks ...K) int

func (*OrderSet[K]) Intersection added in v1.0.53

func (o *OrderSet[K]) Intersection(other *OrderSet[K]) *OrderSet[K]

Intersection returns a new set with elements common to the set and other.

func (*OrderSet[K]) IsDisjointOf added in v1.0.53

func (o *OrderSet[K]) IsDisjointOf(other *OrderSet[K]) bool

IsDisjointOf return True if the set has no elements in common with other. Sets are disjoint if and only if their intersection is the empty set.

func (*OrderSet[K]) IsEmpty added in v1.0.53

func (o *OrderSet[K]) IsEmpty() bool

IsEmpty implements the Container interface.

func (*OrderSet[K]) IsSubsetOf added in v1.0.53

func (o *OrderSet[K]) IsSubsetOf(other *OrderSet[K]) bool

IsSubsetOf tests whether every element in the set is in other.

func (*OrderSet[K]) IsSupersetOf added in v1.0.53

func (o *OrderSet[K]) IsSupersetOf(other *OrderSet[K]) bool

IsSupersetOf tests whether every element in other is in the set.

func (*OrderSet[K]) Keys added in v1.0.53

func (o *OrderSet[K]) Keys() *SList[K]

Keys return a copy of all keys as a slice.

func (*OrderSet[K]) Len added in v1.0.53

func (o *OrderSet[K]) Len() int

func (*OrderSet[K]) Remove added in v1.0.53

func (o *OrderSet[K]) Remove(k K) bool

func (*OrderSet[K]) RemoveN added in v1.0.53

func (o *OrderSet[K]) RemoveN(ks ...K) int

func (*OrderSet[K]) String added in v1.0.53

func (o *OrderSet[K]) String() string

String implements the fmt.Stringer interface.

func (*OrderSet[K]) Union added in v1.0.53

func (o *OrderSet[K]) Union(other *OrderSet[K]) *OrderSet[K]

Union returns a new set with elements from the set and other.

func (*OrderSet[K]) Update added in v1.0.53

func (o *OrderSet[K]) Update(other *OrderSet[K])

Update adds all elements from other to set. set |= other.

type Queue added in v1.0.1

type Queue[T any] struct {
	// contains filtered or unexported fields
}

Queue represents a single instance of the queue data structure.

func NewRing added in v1.0.1

func NewRing[T any]() *Queue[T]

NewRing constructs and returns a new Queue.

func (*Queue[T]) Add added in v1.0.1

func (q *Queue[T]) Add(elem T)

Add puts an element on the end of the queue.

func (*Queue[T]) Get added in v1.0.1

func (q *Queue[T]) Get(i int) T

Get returns the element at index i in the queue. If the index is invalid, the call will panic. This method accepts both positive and negative index values. Index 0 refers to the first element, and index -1 refers to the last.

func (*Queue[T]) Length added in v1.0.1

func (q *Queue[T]) Length() int

Length returns the number of elements currently stored in the queue.

func (*Queue[T]) Peek added in v1.0.1

func (q *Queue[T]) Peek() T

Peek returns the element at the head of the queue. This call panics if the queue is empty.

func (*Queue[T]) Remove added in v1.0.1

func (q *Queue[T]) Remove() T

Remove removes and returns the element from the front of the queue. If the queue is empty, the call will panic.

type SList added in v1.0.17

type SList[T any] struct {
	// contains filtered or unexported fields
}

SList is a singly linked list.

func NewSList added in v1.0.52

func NewSList[T any]() *SList[T]

func SListFromUnpack added in v1.0.52

func SListFromUnpack[T any](values ...T) *SList[T]

SListFromUnpack return a SList that contains values.

func SListIterFilter added in v1.0.53

func SListIterFilter[T any](a SList[T], iterate func(a SList[T], node T) bool) SList[T]

SListIterFilter Looks through each value in the list, returning a list of all the values that pass a truth test (predicate).

func SListIterMapCopy added in v1.0.53

func SListIterMapCopy[T any](a SList[T], iterate func(a SList[T], node T) T) SList[T]

SListIterMapCopy Produces a new list by mapping each value in list through a transformation function (iterate).

func SListIterMapInPlace added in v1.0.53

func SListIterMapInPlace[T any](a SList[T], iterate func(a SList[T], node T) T) SList[T]

SListIterMapInPlace Iterates over list, yielding each value in turn to an iterate function, Returns the list for chaining.

func SetToSList added in v1.0.52

func SetToSList[K comparable](u BuiltinSet[K]) *SList[K]

SetToSList SetToList convert set to list

func (*SList[T]) Back added in v1.0.17

func (l *SList[T]) Back() T

Back returns the last element in the list.

func (*SList[T]) Clear added in v1.0.17

func (l *SList[T]) Clear()

Clear erases all elements from the container. After this call, Len() returns zero.

func (*SList[T]) ForEach added in v1.0.17

func (l *SList[T]) ForEach(cb func(T))

ForEach iterate the list, apply each element to the cb callback function.

func (*SList[T]) ForEachIf added in v1.0.17

func (l *SList[T]) ForEachIf(cb func(T) bool)

ForEachIf iterate the container, apply each element to the cb callback function, stop if cb returns false.

func (*SList[T]) ForEachMutable added in v1.0.17

func (l *SList[T]) ForEachMutable(cb func(*T))

ForEachMutable iterate the container, apply pointer of each element to the cb callback function.

func (*SList[T]) ForEachMutableIf added in v1.0.17

func (l *SList[T]) ForEachMutableIf(cb func(*T) bool)

ForEachMutableIf iterate the container, apply pointer of each element to the cb callback function, stop if cb returns false.

func (*SList[T]) Front added in v1.0.17

func (l *SList[T]) Front() T

Front returns the first element in the list.

func (*SList[T]) InsertLessBound added in v1.0.53

func (l *SList[T]) InsertLessBound(v T, fn ttypes.LessEqFn[T])

func (*SList[T]) IsEmpty added in v1.0.17

func (l *SList[T]) IsEmpty() bool

IsEmpty checks if the container has no elements.

func (*SList[T]) Iterate added in v1.0.17

func (l *SList[T]) Iterate() MutableIterator[T]

Iterate returns an iterator to the whole container.

func (*SList[T]) Len added in v1.0.17

func (l *SList[T]) Len() int

Len returns the number of elements in the container.

func (*SList[T]) PopFront added in v1.0.17

func (l *SList[T]) PopFront() T

PopFront popups an element from the front of the list. The list must be non-empty!

func (*SList[T]) PopTail added in v1.0.53

func (l *SList[T]) PopTail() T

PopTail popups an element from the tail of the list. The list must be non-empty!

func (*SList[T]) PushBack added in v1.0.17

func (l *SList[T]) PushBack(v T)

PushBack pushed an element to the tail of the list.

func (*SList[T]) PushFront added in v1.0.17

func (l *SList[T]) PushFront(v T)

PushFront pushed an element to the front of the list.

func (*SList[T]) RemoveValue added in v1.0.53

func (l *SList[T]) RemoveValue(v T, fn ttypes.CompareFn[T]) bool

func (*SList[T]) Reverse added in v1.0.17

func (l *SList[T]) Reverse()

Reverse reverses the order of all elements in the container.

func (*SList[T]) Values added in v1.0.17

func (l *SList[T]) Values() []T

Values copies all elements in the container to a slice and return it.

type Skiplist added in v1.0.17

type Skiplist[K, V any] struct {
	// contains filtered or unexported fields
}

Skiplist is a kind of data structure which can search quickly by exchanging space for time

func NewSkipList added in v1.0.17

func NewSkipList[K, V any](cmp ttypes.CompareFn[K], opts ...Option) *Skiplist[K, V]

NewSkipList news a Skiplist

func (*Skiplist[K, V]) Get added in v1.0.17

func (sl *Skiplist[K, V]) Get(key K) (V, error)

Get returns the value associated with the passed key if the key is in the skiplist, otherwise returns error

func (*Skiplist[K, V]) Insert added in v1.0.17

func (sl *Skiplist[K, V]) Insert(key K, value V)

Insert inserts a key-value pair into the skiplist

func (*Skiplist[K, V]) Keys added in v1.0.17

func (sl *Skiplist[K, V]) Keys() []K

Keys returns all keys in the skiplist

func (*Skiplist[K, V]) Len added in v1.0.17

func (sl *Skiplist[K, V]) Len() int

Len returns the amount of key-value pair in the skiplist

func (*Skiplist[K, V]) Remove added in v1.0.17

func (sl *Skiplist[K, V]) Remove(key K) bool

Remove removes the key-value pair associated with the passed key and returns true if the key is in the skiplist, otherwise returns false

func (*Skiplist[K, V]) Traversal added in v1.0.17

func (sl *Skiplist[K, V]) Traversal(visitor func(k K, v V) bool)

Traversal traversals elements in the skiplist, it will stop until to the end or the visitor returns false

type Stack added in v1.0.1

type Stack[T any] struct {
	// contains filtered or unexported fields
}

Stack s is a container adaptor that provides the functionality of a stack, a LIFO (last-in, first-out) data structure.

func NewStack added in v1.0.1

func NewStack[T any]() *Stack[T]

NewStack creates a new Stack object.

func NewStackCap added in v1.0.1

func NewStackCap[T any](capacity int) *Stack[T]

NewStackCap creates a new Stack object with the specified capacity.

func (*Stack[T]) Cap added in v1.0.1

func (s *Stack[T]) Cap() int

Cap returns the capacity of the stack.

func (*Stack[T]) Clear added in v1.0.1

func (s *Stack[T]) Clear()

Clear implements the Container interface.

func (*Stack[T]) IsEmpty added in v1.0.1

func (s *Stack[T]) IsEmpty() bool

IsEmpty implements the Container interface.

func (*Stack[T]) Len added in v1.0.1

func (s *Stack[T]) Len() int

Len implements the Container interface.

func (*Stack[T]) Pop added in v1.0.1

func (s *Stack[T]) Pop() T

Pop popups an element from the top of the stack. It must be called when IsEmpty() returned false, otherwise it will panic.

func (*Stack[T]) Push added in v1.0.1

func (s *Stack[T]) Push(t T)

Push pushes the element to the top of the stack.

func (*Stack[T]) Reset added in v1.0.7

func (s *Stack[T]) Reset()

func (*Stack[T]) Top added in v1.0.1

func (s *Stack[T]) Top() T

Top returns the top element in the stack. It must be called when s.IsEmpty() returned false, otherwise it will panic.

func (*Stack[T]) TryPop added in v1.0.1

func (s *Stack[T]) TryPop() (val T, ok bool)

TryPop tries to popup an element from the top of the stack.

type Tuple2E added in v1.0.1

type Tuple2E[A any, B any] struct {
	E1 A
	E2 B
}

Tuple2E 自定义两个元素的Tuple

func NewTuple2E added in v1.0.1

func NewTuple2E[A any, B any](a A, b B) *Tuple2E[A, B]

func (*Tuple2E[A, B]) Unpack added in v1.0.1

func (t *Tuple2E[A, B]) Unpack() (A, B)

type Tuple3E added in v1.0.1

type Tuple3E[A any, B any, C any] struct {
	Tuple2E[A, B]
	E3 C
}

func NewTuple3E added in v1.0.1

func NewTuple3E[A any, B any, C any](a A, b B, c C) *Tuple3E[A, B, C]

func (*Tuple3E[A, B, C]) Unpack added in v1.0.1

func (t *Tuple3E[A, B, C]) Unpack() (A, B, C)

type Tuple4E added in v1.0.1

type Tuple4E[A any, B any, C any, D any] struct {
	Tuple3E[A, B, C]
	E4 D
}

func NewTuple4E added in v1.0.1

func NewTuple4E[A any, B any, C any, D any](a A, b B, c C, d D) *Tuple4E[A, B, C, D]

func (*Tuple4E[A, B, C, D]) Unpack added in v1.0.1

func (t *Tuple4E[A, B, C, D]) Unpack() (A, B, C, D)

type Tuple5E added in v1.0.1

type Tuple5E[A any, B any, C any, D any, E any] struct {
	Tuple4E[A, B, C, D]
	E5 E
}

func NewTuple5E added in v1.0.1

func NewTuple5E[A any, B any, C any, D any, E any](a A, b B, c C, d D, e E) *Tuple5E[A, B, C, D, E]

func (*Tuple5E[A, B, C, D, E]) Unpack added in v1.0.1

func (t *Tuple5E[A, B, C, D, E]) Unpack() (A, B, C, D, E)

type TupleName added in v1.0.29

type TupleName struct {
	// contains filtered or unexported fields
}

func (*TupleName) Index added in v1.0.29

func (tn *TupleName) Index(name string) int

func (*TupleName) Name added in v1.0.29

func (tn *TupleName) Name(index int) string

func (*TupleName) Names added in v1.0.53

func (tn *TupleName) Names() []string

func (*TupleName) Set added in v1.0.29

func (tn *TupleName) Set(name string, index int)

type WaitFor added in v1.0.4

type WaitFor[T comparable] struct {
	// contains filtered or unexported fields
}

WaitFor holds the data to add and the time it should be added

type WaitForPriorityQueue added in v1.0.4

type WaitForPriorityQueue[T comparable] struct {
	// contains filtered or unexported fields
}

WaitForPriorityQueue implements a priority queue for WaitFor items.

WaitForPriorityQueue implements heap.Interface. The item occurring next in time (i.e., the item with the smallest readyAt) is at the root (index 0). Peek returns this minimum item at index 0. Pop returns the minimum item after it has been removed from the queue and placed at index Len()-1 by container/heap. Push adds an item at index Len(), and container/heap percolates it into the correct location.

func NewWaitForPriorityQueue added in v1.0.4

func NewWaitForPriorityQueue[T comparable]() *WaitForPriorityQueue[T]

func (*WaitForPriorityQueue[T]) Len added in v1.0.4

func (pq *WaitForPriorityQueue[T]) Len() int

func (*WaitForPriorityQueue[T]) Peek added in v1.0.4

func (pq *WaitForPriorityQueue[T]) Peek() *WaitFor[T]

Peek returns the item at the beginning of the queue, without removing the item or otherwise mutating the queue. It is safe to call directly.

func (*WaitForPriorityQueue[T]) Pop added in v1.0.4

func (pq *WaitForPriorityQueue[T]) Pop() *WaitFor[T]

Pop 弹出优先级队列元素

func (*WaitForPriorityQueue[T]) Push added in v1.0.4

func (pq *WaitForPriorityQueue[T]) Push(entry *WaitFor[T], ignore bool)

Push adds the entry to the priority queue, or updates the readyAt if it already exists in the queue

Jump to

Keyboard shortcuts

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