A persistent vector based on the Hash Array Mapped Trie from 'Ideal Hash Trees' by Phil Bagwell.
class val Vec[A: Any #share]
new val create() : Vec[A] val^
new val _create( root': (_VecNode[A] val | None val), tail': Array[A] val, size': USize val, depth': USize val) : Vec[A] val^
Return the amount of values in the vector.
fun box size() : USize val
Get the i-th element, raising an error if the index is out of bounds.
fun box apply( i: USize val) : val->A ?
Return a vector with the i-th element changed, raising an error if the index is out of bounds.
fun val update( i: USize val, value: val->A) : Vec[A] val ?
Return a vector with an element inserted. Elements after this are moved up by one index, extending the vector. An out of bounds index raises an error.
fun val insert( i: USize val, value: val->A) : Vec[A] val ?
Return a vector with an element deleted. Elements after this are moved down by one index, compacting the vector. An out of bounds index raises an error.
fun val delete( i: USize val) : Vec[A] val ?
Return a vector with n elements removed, beginning at index i.
fun val remove( i: USize val, n: USize val) : Vec[A] val ?
Return a vector with the value added to the end.
fun val push( value: val->A) : Vec[A] val
Return a vector with the value at the end removed.
fun val pop() : Vec[A] val ?
Return a vector with the values of the given iterator added to the end.
fun val concat( iter: Iterator[val->A] ref) : Vec[A] val
Find the nth
appearance of value
from the beginning of the vector, starting at offset
and examining higher indices, and using the supplied predicate
for comparisons. Returns the index of the value, or raise an error if the value isn't present.
By default, the search starts at the first element of the vector, returns the first instance of value
found, and uses object identity for comparison.
fun val find( value: val->A, offset: USize val = 0, nth: USize val = 0, predicate: {(A, A): Bool}[A] val = lambda) : USize val ?
Returns true if the vector contains value
, false otherwise.
fun val contains( value: val->A, predicate: {(A, A): Bool}[A] val = lambda) : Bool val
Return a vector that is a clone of a portion of this vector. The range is exclusive and saturated.
fun val slice( from: USize val = 0, to: USize val = call, step: USize val = 1) : Vec[A] val
Return a vector with the elements in reverse order.
fun val reverse() : Vec[A] val
Return an iterator over the indices in the vector.
fun val keys() : VecKeys[A] ref^
Return an iterator over the values in the vector.
fun val values() : VecValues[A] ref^
Return an iterator over the (index, value) pairs in the vector.
fun val pairs() : VecPairs[A] ref^
Return the amount of values in the root.
fun box _tail_offset() : USize val
Raise 32 to the power of n.
fun box _pow32( n: USize val) : USize val
fun box _leaf_nodes() : Array[Array[A] val] ref^
© 2016-2018, The Pony Developers
© 2014-2015, Causality Ltd.
Licensed under the BSD 2-Clause License.
https://stdlib.ponylang.io/collections-persistent-Vec