Discuss this page on this pages [[isInt Talk Page|TalkPage]]
=== isInt ===
See [[http://xelerus.de/index.php?s=functions&function=26|isInt at Xelerus]]
^ Syntax | (isInt expr) -> True/Nil |
^ Arguments | expr: The expression you want to test for being an integer. |
^ Returns | boolean: True if expression is an integer. Nil otherwise. |
^ Category | [[condition query]] |
^ Description | Checks to see if the expression is an integer and if it is returns True. Otherwise returns Nil. |
=== Example ===
(isInt "Betel")
Returns Nil.
(isInt 45)
Returns True.
Return to [[:Functions]] list