logand
 
 
 

Returns the result of the logical bitwise AND of a list of integers

(logand [int int...]) 

Arguments

int

An integer.

Return Values

An integer (0, if no arguments are supplied).

Examples

Command: (logand 7 15 3)

3

Command: (logand 2 3 15)

2

Command: (logand 8 3 4)

0