Functions Index :: A :: And2

[<< up one level]

Module:

bool :: core

Definition:

And2(val x1, val x2)

Description:

Returns the result of the AND of its arguments. [1]

Examples:

d = And2(w > t, w == 4)

#d == true since both arguments are true bool expressions

 

[<< top]

 


[1]: The function is provided as a building block of more complex functions, particularly for operations on arrays. See the documentation of the array package and the ArrayOpFunc, ArrayOpArrayFunc and ArraySum functions.