You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bonzai/maps/maps.go

42 lines
973 B
Go

package maps
import (
"io/fs"
"os"
"path/filepath"
"sort"
"github.com/rwxrob/bonzai/fn"
)
// Prefix returns a new slice with prefix added to each string.
func Prefix(in []string, pre string) []string {
return fn.Map(in, func(i string) string { return pre + i })
}
// Keys returns the keys in lexicographically sorted order.
func Keys[T any](m map[string]T) []string {
keys := []string{}
for k, _ := range m {
keys = append(keys, k)
sort.Strings(keys)
}
return keys
}
// CleanPaths runs filepath.Clean on each item in the slice and returns.
func CleanPaths(paths []string) []string {
return fn.Map(paths, func(i string) string { return filepath.Clean(i) })
}
// MarkDirs will add an os.PathSeparator to the end of the name if the
// fs.DirEntry is a directory.
func MarkDirs(entries []fs.DirEntry) []string {
return fn.Map(entries, func(f fs.DirEntry) string {
if f.IsDir() {
return f.Name() + string(os.PathSeparator)
}
return f.Name()
})
}