Versions in this module Expand all Collapse all v1 v1.1.0 Feb 5, 2025 v1.0.0 Jan 22, 2025 Changes in this version + func Column[V any, K any](vList []V, f func(V) K) []K + func GroupBy[V any, K comparable](vList []V, f func(V) K) map[K]V + func GroupListBy[V any, K comparable](vList []V, f func(V) K) map[K][]V + func Implode[K any](separator string, elementList []K) string + func InDeep[V any](v V, vList []V) bool + func In[V comparable](v V, vList []V) bool + func UniqueDeep[V any](vList []V) []V + func Unique[V comparable](vList []V) []V + type List interface