File: example_strings_test.go

package info (click to toggle)
golang-github-twotwotwo-sorts 0.0~git20160814.bf5c1f2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 172 kB
  • sloc: makefile: 2
file content (19 lines) | stat: -rw-r--r-- 503 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2013 The Go Authors.
// Copyright 2015 Randall Farmer.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sorts_test

import (
	"fmt"
	"github.com/twotwotwo/sorts/sortutil"
)

func Example_strings() {
	groceries := []string{"peppers", "tortillas", "tomatoes", "cheese"}
	sortutil.Strings(groceries) // or sortutil.Bytes([][]byte)
	fmt.Println(groceries)
	// Output: [cheese peppers tomatoes tortillas]
}