Skip to content

Static bit-vector with primitive byte storage and bit-wise index

License

Notifications You must be signed in to change notification settings

chakravala/PrimitiveBits.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Languages