davidssmith / RawArray.jl

Raw array (RA) file format for simple, robust, and user-friendly N-dimensional array storage
MIT License
5 stars 2 forks source link

RawArray doesn't support BitArrays #4

Open RobBlackwell opened 6 years ago

RobBlackwell commented 6 years ago

It would be nice to be able to save BitArrays too, but this fails for me:

x = BitArray(10,10)
rawrite(x,"test.ra")
davidssmith commented 6 years ago

Fixed in #5.

Once the new version of LittleEndianBase128 is merged into the official METADATA, then I can bump this package's version and you can get everything via Pkg.update().

If you want the changes sooner, you can run

Pkg.checkout("LittleEndianBase128")
Pkg.checkout("RawArray")