new files
This commit is contained in:
parent
3af7344581
commit
86c034bb8b
1364 changed files with 21352 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
isInteger s = case reads s :: [(Integer, String)] of
|
||||
[(_, "")] -> True
|
||||
_ -> False
|
||||
|
||||
isDouble s = case reads s :: [(Double, String)] of
|
||||
[(_, "")] -> True
|
||||
_ -> False
|
||||
|
||||
isNumeric :: String -> Bool
|
||||
isNumeric s = isInteger s || isDouble s
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
areDigits = all isDigit
|
||||
isDigit selects ASCII digits i.e. '0'..'9'
|
||||
isOctDigit selects '0'..'7'
|
||||
isHexDigit selects '0'..'9','A'..'F','a'..'f'
|
||||
Loading…
Add table
Add a link
Reference in a new issue