Documentation ¶
Overview ¶
Package sort provides sorting of cloned slice elements
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Asc ¶ added in v0.0.11
func Asc[T constraints.Ordered, TS ~[]T](elements TS) TS
Asc sorts orderable elements ascending
func By ¶
func By[T any, O constraints.Ordered, TS ~[]T](elements TS, orderConverner func(T) O) TS
By sorts cloned elements slice in ascending order, using the orderConverner function to retrieve a value of type Ordered.
func Desc ¶ added in v0.0.11
func Desc[T constraints.Ordered, TS ~[]T](elements TS) TS
Desc sorts orderable elements descending
func DescBy ¶ added in v0.0.11
func DescBy[T any, O constraints.Ordered, TS ~[]T](elements TS, orderConverner func(T) O) TS
DescBy sorts cloned elements slice in descending order, using the orderConverner function to retrieve a value of type Ordered.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.