Operators and Keywords
Function List:
C++ API
Function File: f = isposint(n)
isposint returns true for positive integer values. isposint(1) # this returns TRUE isposint(0.5) # this returns FALSE isposint(0) # this also return FALSE isposint(-1) # this also returns FALSE
isposint returns true for positive integer values.
isposint
isposint(1) # this returns TRUE isposint(0.5) # this returns FALSE isposint(0) # this also return FALSE isposint(-1) # this also returns FALSE