Stream package:vector
O(1) Convert a vector to a
Bundle.
O(1) Convert a vector to a
Bundle, proceeding from right
to left.
O(n) Construct a vector from a
Bundle.
Load a monadic stream bundle into a newly allocated vector. This
function goes through a list, so prefer using
unstream, unless
you need to be in a monad.
O(n) Construct a vector from a
Bundle, proceeding from
right to left.
Create a new mutable vector and fill it with elements from the monadic
stream. The vector will grow exponentially if the maximum size of the
stream is unknown.
Create a new mutable vector and fill it with elements from the monadic
stream from right to left. The vector will grow exponentially if the
maximum size of the stream is unknown.
Create a new mutable vector and fill it with elements from the
Bundle. The vector will grow exponentially if the maximum size
of the
Bundle is unknown.
Create a new mutable vector and fill it with elements from the
Bundle from right to left. The vector will grow exponentially
if the maximum size of the
Bundle is unknown.
Create a new mutable vector and fill it with elements from the
Bundle. The vector will grow exponentially if the maximum size
of the
Bundle is unknown.