mirror of
https://github.com/emirpasic/gods
synced 2024-11-04 18:00:21 +00:00
18 lines
654 B
Go
18 lines
654 B
Go
// Copyright (c) 2015, Emir Pasic. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package examples
|
|
|
|
import "github.com/emirpasic/gods/utils"
|
|
|
|
// SortExample to demonstrate basic usage of basic sort
|
|
func SortExample() {
|
|
strings := []interface{}{} // []
|
|
strings = append(strings, "d") // ["d"]
|
|
strings = append(strings, "a") // ["d","a"]
|
|
strings = append(strings, "b") // ["d","a",b"
|
|
strings = append(strings, "c") // ["d","a",b","c"]
|
|
utils.Sort(strings, utils.StringComparator) // ["a","b","c","d"]
|
|
}
|