travitch / persistent-vector

Persistent vectors for Haskell based on array mapped tries
BSD 3-Clause "New" or "Revised" License
27 stars 4 forks source link

Restore the slicing API #28

Closed travitch closed 4 years ago

travitch commented 4 years ago

The implementations are very inefficient because they go through lists, but at least they are correct. This lets us retain backwards compatibility, and will give us the opportunity to add a more efficient implementation of slicing later.

Closes #13 Fixes #3