Functions Index :: I :: IsEven

[<< up one level]

Module:

numeric :: core

Definition:

IsEven(int x)

Description:

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

Examples:

b1 = IsEven(3) # b1 == false

b2 = IsEven(16) # b2 == true

 

[<< top]