for more information visit the package's GitHub page
Package contains the following modules:
Work with sequences of binary numbers.
>>> [ 1, 0, 0, 0 ]
..> |> Binary.fromIntegers
..> |> Binary.shiftRightBy 1
..> |> Binary.toDecimal
4
>>> 4
..> |> Binary.fromDecimal
..> |> Binary.shiftLeftBy 1
..> |> Binary.toIntegers
[ 1, 0, 0, 0 ]