Documentation ¶
Overview ¶
Package vector provides mutable.Vector constructors and helpers
Index ¶
- func Conv[From, To comparable](vector *mutable.Vector[From], converter func(From) (To, error)) breakStream.Iter[To]
- func Convert[From, To any](vector *mutable.Vector[From], converter func(From) To) stream.Iter[To]
- func Empty[T any]() *mutable.Vector[T]
- func Flat[From, To comparable](vector *mutable.Vector[From], flattener func(From) ([]To, error)) breakStream.Iter[To]
- func Flatt[From, To any](vector *mutable.Vector[From], flattener func(From) []To) stream.Iter[To]
- func From[T any](next func() (T, bool)) *mutable.Vector[T]
- func NewCap[T any](capacity int) *mutable.Vector[T]
- func Of[T any](elements ...T) *mutable.Vector[T]
- func Sort[T any, F constraints.Ordered](v *mutable.Vector[T], by func(T) F) *mutable.Vector[T]
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Conv ¶
func Conv[From, To comparable](vector *mutable.Vector[From], converter func(From) (To, error)) breakStream.Iter[To]
Conv returns a breakable stream that applies the 'converter' function to the collection elements
func Convert ¶
Convert returns a stream that applies the 'converter' function to the collection elements
func Flat ¶
func Flat[From, To comparable](vector *mutable.Vector[From], flattener func(From) ([]To, error)) breakStream.Iter[To]
Flat returns a breakable stream that converts the collection elements into slices and then flattens them to one level
func Flatt ¶
Flatt returns a stream that converts the collection elements into slices and then flattens them to one level
func From ¶
From instantiates a vector with elements retrieved by the 'next' function. The next returns an element with true or zero value with false if there are no more elements.
Types ¶
This section is empty.