package
0.0.0-20240914090759-22fe844ec72e
Repository: https://github.com/couchbase/query.git
Documentation: pkg.go.dev
# Functions
Float64s sorts a slice of float64s in increasing order.
Float64sAreSorted tests whether a slice of float64s is sorted in increasing order.
Ints sorts a slice of ints in increasing order.
IntsAreSorted tests whether a slice of ints is sorted in increasing order.
IsSorted reports whether data is sorted.
Reverse returns the reverse order for data.
Sort sorts data.
Stable sorts data while keeping the original order of equal elements.
Strings sorts a slice of strings in increasing order.
StringsAreSorted tests whether a slice of strings is sorted in increasing order.
# Type aliases
Float64Slice attaches the methods of sort.Interface to []float64, sorting in increasing order.
IntSlice attaches the methods of sort.Interface to []int, sorting in increasing order.
StringSlice attaches the methods of sort.Interface to []string, sorting in increasing order.