Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rtfeldman/elm-hex

Work with Hexadecimal numbers in Elm.
https://github.com/rtfeldman/elm-hex

Last synced: about 2 months ago
JSON representation

Work with Hexadecimal numbers in Elm.

Awesome Lists containing this project

README

        

# hex

Convert integers to and from hexadecimal strings in Elm.

-- Convert a hexdecimal string such as "abc94f" to a decimal integer.

Hex.fromString "a5" == Ok 165
Hex.fromString "hat" == Err "invalid hexadecimal string"

-- Convert a decimal integer to a hexdecimal string such as `"abc94f"`.

Hex.toString 165 == "a5"