Functions Index :: I :: IsOdd

[<< up one level]

Module:

numeric :: core

Definition:

IsOdd(int x)

Description:

Returns true if x is an odd integer (not a multiple of two), false otherwise.

Examples:

b1 = IsOdd(3) # b1 == true

b2 = Isodd(16) # b2 == false

 

[<< top]