logior (AutoLISP)

Returns the result of the logical bitwise inclusive OR of a list of integers

(logior [intint...])

Arguments

int

An integer.

Return Values

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

Examples

Command: (logior 1 2 4)

7

Command: (logior 9 3)

11