Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 900 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 900 Bytes

PrimitiveBits.jl

Static bit-vector types with primitive byte storage and bit-wise indexing

Build Status Build status Coverage Status codecov.io

Usage

julia> using PrimitiveBits

julia> b = PrimitiveBits16(7)
[1110000000000000]

julia> b[2:4]
3-element Array{Bool,1}:
  true
  true
 false