Skip to content

Instantly share code, notes, and snippets.

@chris-martin
Created February 21, 2018 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-martin/1f2006f6ce12dc4aaa554d18c7b7db74 to your computer and use it in GitHub Desktop.
Save chris-martin/1f2006f6ce12dc4aaa554d18c7b7db74 to your computer and use it in GitHub Desktop.
isHex :: Word8 -> Bool
isHex w =
(w >= 48 && w <= 57) || -- '0' to '9'
(w >= 97 && w <= 102) || -- lower-case 'a' to 'f'
(w >= 65 && w <= 70) -- upper-case 'A' to 'F'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment