You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use this for a project that requires UInt24. Because I have to handle big endian, I normally just call ntoh and hton when reading/writing such data. However:
julia> BitIntegers.@define_integers24@uint24_str (macro with 1 method)
julia>UInt24(0x010203)
0x010203
julia>hton(UInt24(0x010203))
ERROR: unimplemented
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] bswap(x::UInt24)
@ BitIntegers ~/.julia/dev/BitIntegers/src/BitIntegers.jl:356
[3] hton(x::UInt24)
@ Base ./io.jl:568
The text was updated successfully, but these errors were encountered:
Hi, this is a great package! Thanks.
I'm trying to use this for a project that requires UInt24. Because I have to handle big endian, I normally just call
ntoh
andhton
when reading/writing such data. However:The text was updated successfully, but these errors were encountered: