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 ¶
- Variables
- func FpPartial[T1, T2, R any](f func(a T1, b T2) R, arg1 T1) func(T2) R
- func FpPartial1[T1, T2, R any](f func(T1, T2) R, arg1 T1) func(T2) R
- func FpPartial2[T1, T2, T3, R any](f func(T1, T2, T3) R, arg1 T1) func(T2, T3) R
- func FpPartial3[T1, T2, T3, T4, R any](f func(T1, T2, T3, T4) R, arg1 T1) func(T2, T3, T4) R
- 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
- 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
- func ListIter[T any](a DList[T], iterate func(a DList[T], node T))
- func ListIterAllOk[T any](a DList[T], iterate func(a DList[T], node T) bool) bool
- func ListPartition[T any](a DList[T], iterate func(a DList[T], node T) bool) (DList[T], DList[T])
- func MapConvertKeyToSlice[T comparable, V any](a map[T]V) []T
- func MapConvertValueToSlice[T comparable, V any](a map[T]V) []V
- func MapConvertZipSliceToMap[T comparable, V any](a []T, b []V) (map[T]V, error)
- func MapEqualCounter[V comparable](c map[V]int, other map[V]int) bool
- func MapIter[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V))
- func MapIterAllOk[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V) bool) bool
- func MapIterFilter[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V) bool) map[K]V
- func MapIterMapKVCopy[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V) (K, V)) map[K]V
- func MapIterMapKVInPlace[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V) V) map[K]V
- 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)
- func MapOpAppendValue[K comparable, V any](m map[K][]V, k K, v V) map[K][]V
- func MapOpMerge[K comparable, V any](m1 map[K]V, m2 map[K]V) map[K]V
- func MapOpRemoveEmptyString[K comparable](m map[K]string) map[K]string
- func SetIter[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T))
- func SetIterAllOk[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T) bool) bool
- func SetPartition[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T) bool) (BuiltinSet[T], BuiltinSet[T])
- func SetToSlice[K comparable](u BuiltinSet[K]) []K
- func SliceCmpAbsEqual[T comparable](a []T, b []T) bool
- func SliceCmpAbsSub[T comparable](a []T, b []T) int
- func SliceCmpLogicEqual[T comparable](a []T, b []T) bool
- func SliceCmpLogicSub[T comparable](a []T, b []T) bool
- func SliceCmpTwoDiff[T comparable](a []T, b []T) ([]T, []T)
- func SliceConvertToInt(data interface{}) ([]int, error)
- func SliceConvertToInt64(data interface{}) ([]int64, error)
- func SliceConvertToString(data interface{}) ([]string, error)
- func SliceExclude[T comparable](a []T, b T) bool
- func SliceGetCopy[T any](data []T, ns ...int) []T
- func SliceGetFilter[T any](a []T, filter func(i int) bool) []T
- func SliceGetTail[T any](data []T, d ...T) T
- func SliceGroupByHandler[K comparable, V any](data []V, getKeyHandler func(int) K) map[K][]V
- func SliceGroupByHandlerUnique[K comparable, V any](data []V, getKeyHandler func(int) K) map[K]V
- func SliceGroupToCounter[V comparable](data []V) map[V]int
- func SliceGroupToMap[V comparable](data []V) map[V][]V
- func SliceGroupToSlices[V ttypes.Ordered](data []V) [][]V
- func SliceGroupToTwoMap[T comparable, K comparable, V any](data []V, groupT func(*V) T, groupK func(*V) K) map[T]map[K][]V
- func SliceInclude[T comparable](a []T, b T) bool
- func SliceIncludeBinarySearch[T ttypes.Ordered](data []T, value T) int
- func SliceIncludeIndex[T comparable](a []T, b T) int
- func SliceIncludeIndexUnpack[T comparable](a T, others ...T) int
- func SliceIncludeUnpack[T comparable](a T, others ...T) bool
- func SliceIncludeWithFn[T comparable](a []T, fn func([]T, int) bool) bool
- func SliceIter[T any](a []T, iterate func(a []T, i int))
- func SliceIterAllOk[T any](a []T, iterate func(a []T, i int) bool) bool
- func SliceIterFilter[T any](a []T, iterate func(a []T, i int) bool) []T
- func SliceIterMapCopy[T any](a []T, iterate func(a []T, i int) T) []T
- func SliceIterMapInPlace[T any](a []T, iterate func(a []T, i int) T) []T
- func SliceIterPartition[T any](a []T, iterate func(a []T, i int) bool) ([]T, []T)
- func SliceMax[T ttypes.Ordered](data []T) T
- func SliceMaxN[T ttypes.Ordered](data []T, n int) []T
- func SliceMaxNWithOrder[T ttypes.Ordered](data []T, n int) []T
- func SliceMaxUnpack[T ttypes.Ordered](data ...T) T
- func SliceMin[T ttypes.Ordered](data []T) T
- func SliceMinN[T ttypes.Ordered](data []T, n int) []T
- func SliceMinNWithOrder[T ttypes.Ordered](data []T, n int) []T
- func SliceMinUnpack[T ttypes.Ordered](data ...T) T
- func SliceOpInsert[T any](data *[]T, i int, x ...T)
- func SliceOpJoin[T any](data []T, seps ...string) (string, error)
- func SliceOpMerge[T any](first []T, second []T) []T
- func SliceOpPopBack[T any](data *[]T) (T, bool)
- func SliceOpRemove[T comparable](data *[]T, b T)
- func SliceOpRemoveIndex[T any](data *[]T, i int)
- func SliceOpRemoveMany[T comparable](data *[]T, values []T)
- func SliceOpRemoveRange[T any](data *[]T, i int, j int)
- func SliceOpReplace[T comparable](data []T, a T, b T)
- func SliceOpReverse[T any](data []T)
- func SliceOpReverseCopy[T any](data []T) []T
- func SliceOpShuffle[T any](data []T)
- func SliceOpUnique[T comparable](data []T) []T
- func StrHasPrefixInsensitive(str string, subStr string) bool
- func StrHasSuffixInsensitive(str string, subStr string) bool
- func StrRemoveHead(s string, n int) string
- func StrRemoveTail(s string, n int) string
- func StrReverse(s string) string
- func StrSplitNth(str string, sep string, total int, nth int) string
- type Bitmap
- type BuiltinSet
- func MapConvertKeyToSet[T comparable, V any](a map[T]V) BuiltinSet[T]
- func NewSet[K comparable](n ...int) BuiltinSet[K]
- func SetFromSlice[K comparable](ks []K) BuiltinSet[K]
- func SetIterFilter[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T) bool) BuiltinSet[T]
- func SetIterMapCopy[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T) T) BuiltinSet[T]
- func SetIterMapInPlace[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T) T) BuiltinSet[T]
- func SetOf[K comparable](ks ...K) BuiltinSet[K]
- func SliceGroupToSet[V comparable](data []V) BuiltinSet[V]
- func (s BuiltinSet[K]) Clear()
- func (s BuiltinSet[K]) Delete(k K)
- func (s BuiltinSet[K]) Difference(other BuiltinSet[K]) BuiltinSet[K]
- func (s BuiltinSet[K]) Equal(other BuiltinSet[K]) bool
- func (s BuiltinSet[K]) ForEach(cb func(k K))
- func (s BuiltinSet[K]) ForEachIf(cb func(k K) bool)
- func (s BuiltinSet[K]) Has(k K) bool
- func (s BuiltinSet[K]) Insert(k K) bool
- func (s BuiltinSet[K]) InsertN(ks ...K) int
- func (s BuiltinSet[K]) Intersection(other BuiltinSet[K]) BuiltinSet[K]
- func (s BuiltinSet[K]) IsDisjointOf(other BuiltinSet[K]) bool
- func (s BuiltinSet[K]) IsEmpty() bool
- func (s BuiltinSet[K]) IsSubsetOf(other BuiltinSet[K]) bool
- func (s BuiltinSet[K]) IsSupersetOf(other BuiltinSet[K]) bool
- func (s BuiltinSet[K]) Keys() []K
- func (s BuiltinSet[K]) Len() int
- func (s BuiltinSet[K]) Remove(k K) bool
- func (s BuiltinSet[K]) RemoveN(ks ...K) int
- func (s BuiltinSet[K]) String() string
- func (s BuiltinSet[K]) Union(other BuiltinSet[K]) BuiltinSet[K]
- func (s BuiltinSet[K]) Update(other BuiltinSet[K])
- type DList
- func (l *DList[T]) Back() T
- func (l *DList[T]) Clear()
- func (l *DList[T]) ForEach(cb func(val T))
- func (l *DList[T]) ForEachIf(cb func(val T) bool)
- func (l *DList[T]) ForEachMutable(cb func(val *T))
- func (l *DList[T]) ForEachMutableIf(cb func(val *T) bool)
- func (l *DList[T]) Front() T
- func (l *DList[T]) IsEmpty() bool
- func (l *DList[T]) Iterate() MutableIterator[T]
- func (l *DList[T]) Len() int
- func (l *DList[T]) PopBack() T
- func (l *DList[T]) PopFront() T
- func (l *DList[T]) PushBack(val T)
- func (l *DList[T]) PushFront(val T)
- func (l *DList[T]) TryPopBack() (T, bool)
- func (l *DList[T]) TryPopFront() (T, bool)
- type Element
- type Iterator
- type MapCompareResult
- func MapCmpFullComplexKey[T comparable, V any](a map[T]V, b map[T]V) MapCompareResult
- func MapCmpFullSimpleKey[T comparable, V ttypes.Ordered](a map[T]V, b map[T]V) MapCompareResult
- func MapCmpWithComplexKey[T comparable, V any](a map[T]V, b map[T]V, key T) MapCompareResult
- func MapCmpWithSimpleKey[T comparable, V ttypes.Ordered](a map[T]V, b map[T]V, key T) MapCompareResult
- type MapLocker
- type MapRWLocker
- type MutableIterator
- type NamedTuple2E
- type NamedTuple3E
- type NamedTuple4E
- type NamedTuple5E
- type Node
- type Option
- type Options
- type Queue
- type SList
- func (l *SList[T]) Back() T
- func (l *SList[T]) Clear()
- func (l *SList[T]) ForEach(cb func(T))
- func (l *SList[T]) ForEachIf(cb func(T) bool)
- func (l *SList[T]) ForEachMutable(cb func(*T))
- func (l *SList[T]) ForEachMutableIf(cb func(*T) bool)
- func (l *SList[T]) Front() T
- func (l *SList[T]) IsEmpty() bool
- func (l *SList[T]) Iterate() MutableIterator[T]
- func (l *SList[T]) Len() int
- func (l *SList[T]) PopFront() T
- func (l *SList[T]) PushBack(v T)
- func (l *SList[T]) PushFront(v T)
- func (l *SList[T]) Reverse()
- func (l *SList[T]) Values() []T
- type Skiplist
- type SortedMap
- type Stack
- type Tuple2E
- type Tuple3E
- type Tuple4E
- type Tuple5E
- type TupleName
- type WaitFor
- type WaitForPriorityQueue
Constants ¶
This section is empty.
Variables ¶
var ErrorNotFound = errors.New("not found")
Functions ¶
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 ListIterAllOk ¶ added in v1.0.23
ListIterAllOk Returns true if all of the values pass the predicate truth test
func ListPartition ¶ added in v1.0.23
ListPartition Split list into two lists: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate
func MapConvertKeyToSlice ¶ added in v1.0.23
func MapConvertKeyToSlice[T comparable, V any](a map[T]V) []T
MapConvertKeyToSlice 提取map的key
func MapConvertValueToSlice ¶ added in v1.0.23
func MapConvertValueToSlice[T comparable, V any](a map[T]V) []V
MapConvertValueToSlice 提取map的值
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 MapIter ¶ added in v1.0.23
func MapIter[K comparable, V any](a map[K]V, iterate func(a map[K]V, k K, v V))
MapIter 只是迭代元素
func MapIterAllOk ¶ added in v1.0.23
func MapIterAllOk[K comparable, V any](a map[K]V, iterate func(a map[K]V, 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(a map[K]V, 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(a map[K]V, 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(a map[K]V, 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 MapOpAppendValue ¶ added in v1.0.27
func MapOpAppendValue[K comparable, V any](m map[K][]V, k K, v V) map[K][]V
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 MapOpRemoveEmptyString ¶ added in v1.0.23
func MapOpRemoveEmptyString[K comparable](m map[K]string) map[K]string
MapOpRemoveEmptyString 删除空字符串的
func SetIter ¶ added in v1.0.23
func SetIter[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], node T))
SetIter 迭代元素
func SetIterAllOk ¶ added in v1.0.23
func SetIterAllOk[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], 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 SetToSlice ¶
func SetToSlice[K comparable](u BuiltinSet[K]) []K
SetToSlice convert from 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
SliceConvertToInt 切片集合统一转换为[]int
func SliceConvertToInt64 ¶ added in v1.0.1
SliceConvertToInt64 切片集合统一转换为[]int64
func SliceConvertToString ¶ added in v1.0.1
SliceConvertToString 切片集合统一转换为[]string
func SliceGetCopy ¶ added in v1.0.23
SliceGetCopy 复制切片
func SliceGetFilter ¶ added in v1.0.23
SliceGetFilter 过滤slice
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 SliceGroupToSlices ¶ added in v1.0.23
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 SliceIncludeBinarySearch ¶ added in v1.0.23
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([]T, int) bool) bool
func SliceIterAllOk ¶ added in v1.0.23
SliceIterAllOk Returns true if all of the values pass the predicate truth test
func SliceIterFilter ¶ added in v1.0.23
SliceIterFilter 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
SliceIterMapCopy Produces a new slice by mapping each value in list through a transformation function (iterate).
func SliceIterMapInPlace ¶ added in v1.0.23
SliceIterMapInPlace Slice每个元素进行map映射
func SliceIterPartition ¶ added in v1.0.23
SliceIterPartition Split slice into two slices: one whose elements all satisfy predicate and one whose elements all do not satisfy predicate
func SliceMaxNWithOrder ¶ added in v1.0.7
SliceMaxNWithOrder 按序返回切片中最大的N个元素
func SliceMaxUnpack ¶ added in v1.0.23
SliceMaxUnpack 求最大值
func SliceMinNWithOrder ¶ added in v1.0.7
SliceMinNWithOrder 有序返回切片中最小的N个元素
func SliceMinUnpack ¶ added in v1.0.23
SliceMinUnpack 求最小值
func SliceOpInsert ¶ added in v1.0.23
SliceOpInsert 把元素插入到data的指定位置
func SliceOpJoin ¶ added in v1.0.30
SliceOpJoin 合并切片
func SliceOpMerge ¶ added in v1.0.24
func SliceOpMerge[T any](first []T, second []T) []T
SliceOpMerge 合并两个切片
func SliceOpPopBack ¶ added in v1.0.23
SliceOpPopBack 弹出切片最后一个元素
func SliceOpRemove ¶ added in v1.0.23
func SliceOpRemove[T comparable](data *[]T, b T)
SliceOpRemove 原地删除元素
func SliceOpRemoveIndex ¶ added in v1.0.23
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
SliceOpRemoveRange 删除某个范围内的切片
func SliceOpReplace ¶ added in v1.0.23
func SliceOpReplace[T comparable](data []T, a T, b T)
SliceOpReplace 原地替换元素
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 StrHasPrefixInsensitive ¶ added in v1.0.7
StrHasPrefixInsensitive 判断str是以subStr开始, subStr不关注大小写
func StrHasSuffixInsensitive ¶ added in v1.0.7
StrHasSuffixInsensitive 判断str是以subStr结尾, subStr不关注大小写
func StrRemoveHead ¶ added in v1.0.7
StrRemoveHead 删除str起始n个元素
func StrRemoveTail ¶ added in v1.0.7
StrRemoveTail 删除str末尾n个元素
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 NewFromData ¶ added in v1.0.17
NewFromData creates a bitmap from the exported data
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 NewSet ¶
func NewSet[K comparable](n ...int) BuiltinSet[K]
func SetFromSlice ¶
func SetFromSlice[K comparable](ks []K) BuiltinSet[K]
SetFromSlice create a new BuiltinSet object with the initial content from slice.
func SetIterFilter ¶ added in v1.0.23
func SetIterFilter[T comparable](a BuiltinSet[T], iterate func(a BuiltinSet[T], 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(a BuiltinSet[T], 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(a BuiltinSet[T], node T) T) BuiltinSet[T]
SetIterMapInPlace Iterates over set, yielding each value in turn to an iterate function, Returns the set for chaining.
func SetOf ¶
func SetOf[K comparable](ks ...K) BuiltinSet[K]
SetOf creates a new BuiltinSet object with the initial content from ks.
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]) 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]) 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]) 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 ListIterFilter ¶ added in v1.0.23
ListIterFilter Looks through each value in the list, returning a list of all the values that pass a truth test (predicate).
func ListIterMapCopy ¶ added in v1.0.23
ListIterMapCopy Produces a new list by mapping each value in list through a transformation function (iterate).
func ListIterMapInPlace ¶ added in v1.0.23
ListIterMapInPlace Iterates over list, yielding each value in turn to an iterate function, Returns the list for chaining.
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]) 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
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
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]) Iterate ¶ added in v1.0.17
func (l *DList[T]) Iterate() MutableIterator[T]
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]) TryPopBack ¶ added in v1.0.17
TryPopBack tries to pop up an element from the back of the list.
func (*DList[T]) TryPopFront ¶ added in v1.0.17
TryPopFront tries to pop up an element from the front of the list.
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]
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
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 (*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 (*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
func NewNamedTuple5E ¶ added in v1.0.29
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
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 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 (*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
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
Length returns the number of elements currently stored in the queue.
type SList ¶ added in v1.0.17
type SList[T any] struct { // contains filtered or unexported fields }
SList is a singly linked 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
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
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]) Iterate ¶ added in v1.0.17
func (l *SList[T]) Iterate() MutableIterator[T]
Iterate returns an iterator to the whole 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]) 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.
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
NewSkipList news a Skiplist
func (*Skiplist[K, V]) Get ¶ added in v1.0.17
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
Len returns the amount of key-value pair in the skiplist
type SortedMap ¶
type SortedMap[K ttypes.Ordered, V any] struct { ReverseOpt bool Tuples []ttypes.Tuple[K, V] RawMap map[K]V }
SortedMap 有序Map,底层维护了有序切片 如果需要对map进行修改需要执行Rebuild来维护有序行,否则会导致不一致
func MapNewSortedMap ¶ added in v1.0.7
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 NewStackCap ¶ added in v1.0.1
NewStackCap creates a new Stack object with the specified capacity.
func (*Stack[T]) Clear ¶ added in v1.0.1
func (s *Stack[T]) Clear()
Clear 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.
type Tuple3E ¶ added in v1.0.1
func NewTuple3E ¶ added in v1.0.1
type Tuple4E ¶ added in v1.0.1
func NewTuple4E ¶ added in v1.0.1
type Tuple5E ¶ added in v1.0.1
func NewTuple5E ¶ added in v1.0.1
type TupleName ¶ added in v1.0.29
type TupleName struct {
// contains filtered or unexported fields
}
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