PrimitiveBits.jl Static bit-vector types with primitive byte storage and bit-wise indexing Usage julia> using PrimitiveBits julia> b = PrimitiveBits16(7) [1110000000000000] julia> b[2:4] 3-element Array{Bool,1}: true true false