Created
February 21, 2018 19:04
-
-
Save chris-martin/1f2006f6ce12dc4aaa554d18c7b7db74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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