BitOnInteger and BitOrInteger (Float functions): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Examples) |
||
Line 19: | Line 19: | ||
==Examples== | ==Examples== | ||
<ol><li>The following statement rounds an integer up to the nearest odd integer: | |||
<p class="code">%y = %x:bitOnInteger(1) | |||
</p></ol> | |||
==See also== | ==See also== | ||
{{Template:Float:BitOrInteger footer}} | {{Template:Float:BitOrInteger footer}} |
Revision as of 20:42, 29 September 2012
Bitwise Or of integers (Float class)
[Introduced in Sirius Mods 7.9]
These intrinsic functions perform a logical OR of the bits of two integers, that is, output bits are "on" if they are "on" in either of the inputs.
Syntax
%result = float:BitOnInteger( onBits)
%result = float:BitOrInteger( orBits)
Syntax terms
%result | A variable to receive the result of ORing together the bits of float and orBits. |
---|---|
float | One of the floats to be ORed. |
orBits | The other float to be ORed. |
Usage notes
- The BitOrInteger function is available as of Sirius Mods Version 7.9
Examples
- The following statement rounds an integer up to the nearest odd integer:
%y = %x:bitOnInteger(1)