First of all, thanks a lot for creating this package. I think it is awesome to have a less magical alternative to BSON.jl.
The following snippet gives an error:
import LightBSON
arr = rand(2,2)
path = "hello.bson"
LightBSON.bson_write(path, arr)
LightBSON.bson_read(typeof(arr), path)
MethodError: no method matching Matrix{Float64}()
I think it would awesome if load+save of Base.Array would conveniently work out of the box.
- Is that in scope of the package?
- If so would it be hard to implement?
First of all, thanks a lot for creating this package. I think it is awesome to have a less magical alternative to BSON.jl.
The following snippet gives an error:
I think it would awesome if load+save of
Base.Arraywould conveniently work out of the box.