LightBSON.jl
LightBSON.jl copied to clipboard
Support for more base types?
A bit similar to #7
obj = 1:10
LightBSON.bson_write(path, obj)
LightBSON.bson_read(typeof(obj),path)
throws an error:
KeyError: key :start not found
Should ranges and other common types from Base work out of the box? Or is this out of scope?
Ranges specifically may be encoded as arrays, but in general the scope is limited to BSON representable types.
Ok thanks, I now have a better picture of the score of this package!