package
1.12.22
Repository: https://github.com/daheige/thinkgo.git
Documentation: pkg.go.dev

# Functions

Int64QuickSort 对[]int64快速排序.
Int64StableSort 对[]int64稳定排序 从小到大,当元素相同时候,保持原有index顺序.
NewInt64Slice 创建一个int64切片排序slice.
Slice 对s切片类型的数据进行排序,当出现相同元素的话,采用快速排序 The sort is not guaranteed to be stable.
SliceStable 对切片类型的s进行稳定排序 SliceStable sorts the provided slice given the provided less function while keeping the original order of equal elements.

# Type aliases

Int64Slice int64类型的切片排序.