elm-binary
elm-binary copied to clipboard
Work with sequences of binary numbers in Elm.
Results
2
elm-binary issues
Sort by
recently updated
recently updated
newest added
https://discourse.elm-lang.org/t/2-3x-faster-list-concat-implementation/3533
enhancement
```elm {- toBinary 4 -> [ 1, 0, 0] -} toBinary : Int -> List Int toBinary n = case n of 0 -> [ 0 ] 1 -> [...