package
0.27.2
Repository: https://github.com/stashapp/stash.git
Documentation: pkg.go.dev

# Packages

# Functions

AppendUnique appends toAdd to the vs slice if toAdd does not already exist in the slice.
AppendUniques appends a slice of values to the vs slice.
Contains returns whether the vs slice contains t.
Delete returns a copy of the vs slice with toDel values removed.
Exclude returns a copy of the vs slice, excluding all values that are also present in the toExclude slice.
Filter returns a slice containing the elements of the vs slice that meet the condition specified by f.
Index returns the first index of the provided value in the provided slice.
Intersect returns a slice containing values that exist in both provided slices.
Map returns the result of applying f to each element of the vs slice.
NotIntersect returns a slice containing values that do not exist in both provided slices.
SliceSame returns true if the two provided slices have equal elements, regardless of order.
Unique returns a copy of the vs slice, with non-unique values removed.