-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexample_test.go
More file actions
57 lines (51 loc) · 1006 Bytes
/
example_test.go
File metadata and controls
57 lines (51 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2018 Marc-Antoine Ruel. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
package natural_test
import (
"fmt"
"slices"
"sort"
"strings"
"github.com/maruel/natural"
)
func Example() {
items := []string{
"gpio10",
"gpio1",
"gpio20",
}
slices.SortFunc(items, natural.Compare)
fmt.Println(strings.Join(items, "\n"))
// Output:
// gpio1
// gpio10
// gpio20
}
func ExampleLess() {
// The old way to sort before Go 1.23. It is recommended to use the new slices standard package with Compare.
items := []string{
"gpio10",
"gpio1",
"gpio20",
}
sort.Sort(natural.StringSlice(items))
fmt.Println(strings.Join(items, "\n"))
// Output:
// gpio1
// gpio10
// gpio20
}
func ExampleCompare() {
items := []string{
"gpio10",
"gpio1",
"gpio20",
}
slices.SortFunc(items, natural.Compare)
fmt.Println(strings.Join(items, "\n"))
// Output:
// gpio1
// gpio10
// gpio20
}