Go Package slices: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:
=Overview=
=Overview=
=Sorting=
=Sorting=
==<tt>Sort()</tt>==
{{External|https://pkg.go.dev/slices#Sort}}
<code>Sort()</code> <font color=darkkhaki>inplace</font> sorts a slice of any ordered type in ascending order. When sorting floating-point numbers, NaNs are ordered before other values.

Revision as of 00:58, 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.