github.com/prysmaticlabs/prysm@v1.4.4/shared/sliceutil/doc.go (about) 1 /* 2 Package sliceutil implements set operations for specified data type 3 4 Currently types which are tested and supported are: 5 6 []uint32 7 []int32 8 []string 9 []float32 10 []uint64 11 []int64 12 []string 13 []float64 14 15 Intersection, Union, Not , IsIn are the operations which are supported on slices 16 17 */ 18 package sliceutil