vec library

Classes

ExtractIfIterable<T>
ExtractIfIterator<T>
Creates an iterator which uses a closure to determine if an element should be removed. If the closure returns true, then the element is removed and yielded. If the closure returns false, the element will remain in the vector and will not be yielded by the iterator.

Extensions

ListVec on List<T>
A contiguous growable array type, written as Vec
VecOnIterableExtension on Iterable<T>
VecOnIteratorExtension on Iterator<T>
VecOnListListExtension on List<List<T>>

Typedefs

Vec<T> = List<T>