JuliaCollections / FunctionalCollections.jl

Functional and persistent data structures for Julia
MIT License
124 stars 34 forks source link

PersistentVector of tuples does not work #19

Closed malbarbo closed 9 years ago

malbarbo commented 9 years ago
julia> n = 33
33
julia> PersistentVector(fill((), n))
ERROR: `getindex` has no method matching getindex(::(), ::())

With n <= 32 it works.

It still fail with tuple of any size.