# Functions
AppendNotEmpty appends string slice items which are not empty.
Contains returns true if value is contained in slice.
ContainsAny returns any matches between the src and tgt string slice.
Cut removes the elements between i and j from the slice.
Del removes the element at index from slice.
Filter ing without allocating.
Insert s one string slice in the other at the given index.
LastElm returns the last element of the slice.
NewSyncSlice constructs a concurrent slice.
Pop removes the last element from slice and returns both.
Reverse the order of a slice.
Shift removes the first element from slice and returns both.
Shuffle randomizes the order of a slice.
Strip removes all occurrences of val from slice.
Uniq deduplicates the slice.
UnShift adds an element at first index to slice.