Open DeedleFake opened 7 years ago
May also want to move the creation of streams from arrays from the stream
module to this one.
A few more:
concat
. Alternatively, just stick this in +
in std
along with string concatenation.append
. Similar to append()
in Go. Need to make sure that slicing changes the capacity as well to make sure that this doesn't modify parts of existing slices.~ Dropped in favor of concat
. See #122.Even more:
streamReverse
. Streams the array from the last index to the first.
There should be an array module in the standard library for dealing with arrays in various ways. Specifically, it should have support for at least the following:
at
instd
. See #72.len
instd
. See #72.