package slice
import "k8s.io/kubernetes/pkg/util/slice"
Package slice provides utility methods for common operations on slices.
Index ¶
- func ContainsString(slice []string, s string, modifier func(s string) string) bool
- func CopyStrings(s []string) []string
- func ShuffleStrings(s []string) []string
- func SortInts64(a []int64)
- func SortStrings(s []string) []string
- type Int64Slice
Functions ¶
func ContainsString ¶
ContainsString checks if a given slice of strings contains the provided string. If a modifier func is provided, it is called with the slice item before the comparation.
func CopyStrings ¶
CopyStrings copies the contents of the specified string slice into a new slice.
func ShuffleStrings ¶
ShuffleStrings copies strings from the specified slice into a copy in random order. It returns a new slice.
func SortInts64 ¶
func SortInts64(a []int64)
Sorts []int64 in increasing order
func SortStrings ¶
SortStrings sorts the specified string slice in place. It returns the same slice that was provided in order to facilitate method chaining.
Types ¶
type Int64Slice ¶
type Int64Slice []int64
Int64Slice attaches the methods of Interface to []int64, sorting in increasing order.
func (Int64Slice) Len ¶
func (p Int64Slice) Len() int
func (Int64Slice) Less ¶
func (p Int64Slice) Less(i, j int) bool
func (Int64Slice) Swap ¶
func (p Int64Slice) Swap(i, j int)
Source Files ¶
slice.go
- Version
- v1.7.13-beta.0
- Published
- Dec 29, 2017
- Platform
- js/wasm
- Imports
- 2 packages
- Last checked
- 5 minutes ago –
Tools for package owners.