Difference between revisions of "$biton"

From Scriptwiki
Jump to: navigation, search
 
m (fixed c/p mistake)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
Bitoff returns the given number with the Nth bit turned on.
+
Biton returns the given number with the Nth bit turned on.
  
  $bitoff(decimal number, N)
+
  $biton(decimal number, N)
  
 
* Decimal number is the number to perform the operation on given in decimal form (Base 10)
 
* Decimal number is the number to perform the operation on given in decimal form (Base 10)

Latest revision as of 20:07, 18 July 2013

Biton returns the given number with the Nth bit turned on.

$biton(decimal number, N)
  • Decimal number is the number to perform the operation on given in decimal form (Base 10)
  • N is the bit to turn on.

Example

$biton(5,2)

The binary value of 5 is taken

00000101

And the second bit is turned on(second from the right)

00000111
Returns: 7