mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
cec6c8de83
* rem txpool * standardize repo shared utils, remove deprecated items * complete * package lvl godoc
19 lines
301 B
Go
19 lines
301 B
Go
/*
|
|
Package sliceutil implements set operations for specified data type
|
|
|
|
Currently types which are tested and supported are:
|
|
|
|
[]uint32
|
|
[]int32
|
|
[]string
|
|
[]float32
|
|
[]uint64
|
|
[]int64
|
|
[]string
|
|
[]float64
|
|
|
|
Intersection, Union, Not , IsIn are the operations which are supported on slices
|
|
|
|
*/
|
|
package sliceutil
|