icidasset/elm-binary - version: 2.1.0

for more information visit the package's GitHub page

Package contains the following modules:

Binary

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 ]

Convertors

Operations

Utilities