mirror of
https://github.com/rwxrob/bonzai
synced 2024-11-18 15:25:45 +00:00
66 lines
1.1 KiB
Go
66 lines
1.1 KiB
Go
// Copyright 2022 Robert S. Muhlestein.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package fn_test
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rwxrob/bonzai/fn"
|
|
)
|
|
|
|
func ExampleHasPrefix() {
|
|
set := []string{
|
|
"one", "two", "three", "four", "five", "six", "seven",
|
|
}
|
|
fmt.Println(fn.HasPrefix(set, "t"))
|
|
// Output:
|
|
// [two three]
|
|
}
|
|
|
|
func ExamplePrintln() {
|
|
set := []string{"doe", "ray", "mi"}
|
|
filter.Println(set)
|
|
bools := []bool{false, true, true}
|
|
filter.Println(bools)
|
|
// Output:
|
|
// doe
|
|
// ray
|
|
// mi
|
|
// false
|
|
// true
|
|
// true
|
|
}
|
|
|
|
func ExampleKeys() {
|
|
m1 := map[string]int{"two": 2, "three": 3, "one": 1}
|
|
m2 := map[string]string{"two": "two", "three": "three", "one": "one"}
|
|
fmt.Println(filter.Keys(m1))
|
|
fmt.Println(filter.Keys(m2))
|
|
// Output:
|
|
// [one three two]
|
|
// [one three two]
|
|
}
|
|
|
|
func ExamplePrefix() {
|
|
fmt.Println(filter.Prefix([]string{"foo", "bar"}, "my"))
|
|
// Output:
|
|
// [myfoo mybar]
|
|
}
|
|
|
|
func ExampleCleanPaths() {
|
|
paths := []string{
|
|
``,
|
|
`.`,
|
|
`./`,
|
|
`./thing`,
|
|
`/sub/../../thing`,
|
|
}
|
|
filter.Println(filter.CleanPaths(paths))
|
|
// Output:
|
|
// .
|
|
// .
|
|
// .
|
|
// /thing
|
|
}
|