Project

General

Profile

$or » History » Revision 3

Revision 2 (Per Amundsen, 12/24/2019 12:47 PM) → Revision 3/4 (Per Amundsen, 09/09/2020 10:03 AM)

_Added in 1.9.0_ 

 *$or(A,B)* 

 Returns A binary "OR":https://en.wikipedia.org/wiki/Bitwise_operation#OR B. 

 _Supports "Big Integers":https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic_ 

 *Parameters* 

 A - The A binary to "OR":https://en.wikipedia.org/wiki/Bitwise_operation#OR against. 
 B - The B binary to "OR":https://en.wikipedia.org/wiki/Bitwise_operation#OR. 

 *Example* 

 <pre> 
 : Or '5' against '3'. 
 //echo -ag $or(5,3) 
 </pre>