Versions in this module Expand all Collapse all v0 v0.2.0 Oct 14, 2024 v0.1.0 Sep 28, 2024 Changes in this version + func Map[S, T any](v []S, f func(S) T) []T + type Vector []T + func New[T any](vs []T) Vector[T] + func (v Vector[T]) Append(vs ...T) Vector[T] + func (v Vector[T]) Filter(eq func(T) bool) Vector[T] + func (v Vector[T]) IsEmpty() bool + func (v Vector[T]) Raw() []T + func (v Vector[T]) Reverse() Vector[T] + func (v Vector[T]) Sort(less func(x, y T) bool) Vector[T] + func (v Vector[T]) Upsert(val T, eq func(x, y T) bool) Vector[T]