Go Package slices: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:
=Internal=
=Internal=
* [[Go_Language_Modularization#slices|Standard library]]
* [[Go_Language_Modularization#slices|Standard library]]
* [[Go_Slices#Sorting|Go Slices]]


=Overview=
=Overview=

Revision as of 00:59, 2 September 2023

External

Internal

Overview

Sorting

Sort()

https://pkg.go.dev/slices#Sort

Sort() inplace sorts a slice of any ordered type in ascending order. When sorting floating-point numbers, NaNs are ordered before other values.

s := []int{0, 42, -10, 8}
slices.Sort(s)