Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
let is_int s =
|
||||
try ignore (int_of_string s); true
|
||||
with _ -> false
|
||||
|
||||
let is_float s =
|
||||
try ignore (float_of_string s); true
|
||||
with _ -> false
|
||||
|
||||
let is_numeric s = is_int s || is_float s
|
||||
Loading…
Add table
Add a link
Reference in a new issue