Documentation ¶
Index ¶
- func Concat[T any](left []T, right []T) []T
- func DictMerge[K comparable, V any](left map[K]V, right map[K]V) map[K]V
- func Difference[T comparable](from []T, remove []T) []T
- func Filter[T any](fn func(some T) bool, list []T) []T
- func Flatmap[T any, R any](fn func(some T) []R, list []T) []R
- func Fmap[T any, R any](fn func(some T) R, list []T) []R
- func Foldl[T any, R any](fn func(acc R, next T) R, base R, list []T) R
- func Foldr[T any, R any](fn func(next T, carry R) R, base R, list []T) R
- func ToDict[T comparable](xs []T) map[T]bool
- func Uniq[T comparable](xs []T) []T
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DictMerge ¶ added in v0.6.44
func DictMerge[K comparable, V any](left map[K]V, right map[K]V) map[K]V
func Difference ¶ added in v0.6.44
func Difference[T comparable](from []T, remove []T) []T
func ToDict ¶ added in v0.6.44
func ToDict[T comparable](xs []T) map[T]bool
func Uniq ¶ added in v0.6.44
func Uniq[T comparable](xs []T) []T
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.