StrPack.jl
StrPack.jl copied to clipboard
Swiss Army Knife for encoding and decoding binary streams
I'm brand new to Julia, so please be patient with me. I tried `add StrPack` and it didn't work in Julia 1.5, so I cloned the repo and followed the...
``` using StrPack @struct type Apple sweet::Float32 end @struct type Boy eat::Apple end @struct type Cat home::Boy end c = Cat(Boy(Apple(0f0))) ib = IOBuffer() pack(ib, c) seek(ib, 0) unpack(ib, Cat)...
_Using Julia 0.3.2 on OS X 10.9.5_ I'm moving a discussion that started on the Julia-user list to this issue since the discussion has shifted from talking generally about strategies...