Bloomex.BitArray
This module implements a bit array using Erlang’s :array
module.
Summary
get(a, i) | Returns |
new(n) | Returns a new bitarray of size |
set(a, i) | Returns an updated bitarray where the |
Functions
Specs:
- get(t, non_neg_integer) :: boolean
Returns true
if the bitarray has the i
th bit set,
otherwise returns false
.