No description
Find a file
2019-11-05 14:59:55 +01:00
example.nim Added .nimble file and renamed the module to persvector. 2017-07-26 01:43:51 +02:00
persvector.nim Fix #1, handle toPersistentVector properly for input of len == 0 2019-06-20 22:05:20 +02:00
persvector.nimble Bump version 2019-11-05 14:59:55 +01:00
README.md Implemented Clojures persistent vectors in Nim 2017-07-21 18:07:45 +02:00

Persistent Vector

This is an implementation of Clojures persistent vectors in Nim. The default branching factor is 32 as in Clojure, but can be changed by using the boot switch -d:persvectorbits=n where n is the power of two to use as the branching factor (and thus defaults to 5 for 32-way branching).

For more information see the vector.nim file and it's doc-strings.