$BitAnd: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
Line 11: Line 11:


==Syntax==
==Syntax==
<p class="syntax"><span class="term">%result</span> = <span class="literal">$BitAnd</span>(<span class="term">int_1, int_2)
<p class="syntax"><span class="term">%result</span> = <span class="literal">$BitAnd</span>(<span class="term">int_1</span>, <span class="term">int_2</span>)
</p>
</p>
<p>
<p>
</p>
<var class="term">%result</var> is set to the bitwise AND of the two arguments.</p>
<p>%result is set to the bitwise AND of the two arguments.</p>


==Example==
The following program will print the value 2:
The following program will print the value 2:


<p class="code"> B
<p class="code">B
PRINT $BitAnd(-2, 3)
Print $BitAnd(-2, 3)
END
End
</p>
</p>



Revision as of 22:04, 10 April 2013

Bitwise AND of two integers

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $BitAnd function is the BitAndInteger (Float function). There is also OO method for strings called BitAndString (String function).

The $BitAnd function returns an integer which is the bitwise AND of two integers.

$BitAnd accepts two arguments and returns a numeric value.

The first and second arguments are both integers. The default values are 0.

Syntax

%result = $BitAnd(int_1, int_2)

%result is set to the bitwise AND of the two arguments.

Example

The following program will print the value 2:

B Print $BitAnd(-2, 3) End

Products authorizing $BitAnd