BitOnInteger (Float function): Difference between revisions
Jump to navigation
Jump to search
m (→Syntax terms) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:Float:BitOnInteger subtitle}} | {{Template:Float:BitOnInteger subtitle}} | ||
The <var>BitOnInteger</var> [[Intrinsic classes|intrinsic]] function turns on | The <var>BitOnInteger</var> [[Intrinsic classes|intrinsic]] function turns on the set of bits in one integer that are on in another. It is an alias for the <var>[[BitOrInteger (Float function)|BitOrInteger]]</var> function. | ||
==Syntax== | ==Syntax== |
Revision as of 14:18, 29 September 2012
Set bits in one integer from another (Float class) [introduced in Sirius Mods 7.9]
The BitOnInteger intrinsic function turns on the set of bits in one integer that are on in another. It is an alias for the BitOrInteger function.
Syntax
%result = float:BitOnInteger( onBits)
Syntax terms
%result | A variable to receive the result of turning on the bits of onBits in float. |
---|---|
float | The float to turn on bits in. |
onBits | The bits to turn on. |
Usage notes
- The BitOnInteger 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)