chickadee » srfi-60 » bitwise-ior

logior n1 ...procedure
bitwise-ior n1 ...procedure

Returns the integer which is the bit-wise OR of the integer arguments.

Example:

(number->string (logior #b1100 #b1010) 2)
    ; => "1110"