Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stringsImpl (0.14 sec)

  1. src/sort/sort.go

    func Float64s(x []float64) { float64sImpl(x) }
    
    // Strings sorts a slice of strings in increasing order.
    //
    // Note: as of Go 1.22, this function simply calls [slices.Sort].
    func Strings(x []string) { stringsImpl(x) }
    
    // IntsAreSorted reports whether the slice x is sorted in increasing order.
    //
    // Note: as of Go 1.22, this function simply calls [slices.IsSorted].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top