Difference between revisions of "Bit"

From GiderosMobile
Line 9: Line 9:
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
 
=== <translate>Methods</translate> ===
 
=== <translate>Methods</translate> ===
[[Special:MyLanguage/bit.arshift|bit.arshift]] ''<translate>Returns the bitwise arithmetic right-shift</translate>''<br/><!-- GIDEROSMTD:bit.arshift -->
+
[[Special:MyLanguage/bit.arshift|bit.arshift]] ''<translate>Returns the bitwise arithmetic right-shift</translate>''<br/><!-- GIDEROSMTD:bit.arshift(x,n) Returns the bitwise arithmetic right-shift -->
[[Special:MyLanguage/bit.band|bit.band]] ''<translate>Returns the bitwise and of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.band -->
+
[[Special:MyLanguage/bit.band|bit.band]] ''<translate>Returns the bitwise and of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.band(x1,x2) Returns the bitwise and of its argument. -->
[[Special:MyLanguage/bit.bnot|bit.bnot]] ''<translate>Returns the bitwise not of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.bnot -->
+
[[Special:MyLanguage/bit.bnot|bit.bnot]] ''<translate>Returns the bitwise not of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.bnot(x) Returns the bitwise not of its argument. -->
[[Special:MyLanguage/bit.bor|bit.bor]] ''<translate>Returns the bitwise or of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.bor -->
+
[[Special:MyLanguage/bit.bor|bit.bor]] ''<translate>Returns the bitwise or of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.bor(x1,x2) Returns the bitwise or of its argument. -->
[[Special:MyLanguage/bit.bswap|bit.bswap]] ''<translate>Swaps the bytes of its argument and returns it</translate>''<br/><!-- GIDEROSMTD:bit.bswap -->
+
[[Special:MyLanguage/bit.bswap|bit.bswap]] ''<translate>Swaps the bytes of its argument and returns it</translate>''<br/><!-- GIDEROSMTD:bit.bswap(x) Swaps the bytes of its argument and returns it -->
[[Special:MyLanguage/bit.bxor|bit.bxor]] ''<translate>Returns the bitwise xor of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.bxor -->
+
[[Special:MyLanguage/bit.bxor|bit.bxor]] ''<translate>Returns the bitwise xor of its argument.</translate>''<br/><!-- GIDEROSMTD:bit.bxor(x1,x2) Returns the bitwise xor of its argument. -->
[[Special:MyLanguage/bit.lshift|bit.lshift]] ''<translate>Returns the bitwise logical left-shift</translate>''<br/><!-- GIDEROSMTD:bit.lshift -->
+
[[Special:MyLanguage/bit.lshift|bit.lshift]] ''<translate>Returns the bitwise logical left-shift</translate>''<br/><!-- GIDEROSMTD:bit.lshift(x,n) Returns the bitwise logical left-shift -->
[[Special:MyLanguage/bit.rol|bit.rol]] ''<translate>Returns the bitwise left rotation</translate>''<br/><!-- GIDEROSMTD:bit.rol -->
+
[[Special:MyLanguage/bit.rol|bit.rol]] ''<translate>Returns the bitwise left rotation</translate>''<br/><!-- GIDEROSMTD:bit.rol(x,n) Returns the bitwise left rotation -->
[[Special:MyLanguage/bit.ror|bit.ror]] ''<translate>Returns the bitwise right rotation</translate>''<br/><!-- GIDEROSMTD:bit.ror -->
+
[[Special:MyLanguage/bit.ror|bit.ror]] ''<translate>Returns the bitwise right rotation</translate>''<br/><!-- GIDEROSMTD:bit.ror(x,n) Returns the bitwise right rotation -->
[[Special:MyLanguage/bit.rshift|bit.rshift]] ''<translate>Returns the bitwise logical right-shift</translate>''<br/><!-- GIDEROSMTD:bit.rshift -->
+
[[Special:MyLanguage/bit.rshift|bit.rshift]] ''<translate>Returns the bitwise logical right-shift</translate>''<br/><!-- GIDEROSMTD:bit.rshift(x,n) Returns the bitwise logical right-shift -->
[[Special:MyLanguage/bit.tobit|bit.tobit]] ''<translate>Normalizes a number to the numeric range for bit operations</translate>''<br/><!-- GIDEROSMTD:bit.tobit -->
+
[[Special:MyLanguage/bit.tobit|bit.tobit]] ''<translate>Normalizes a number to the numeric range for bit operations</translate>''<br/><!-- GIDEROSMTD:bit.tobit(x) Normalizes a number to the numeric range for bit operations -->
[[Special:MyLanguage/bit.tohex|bit.tohex]] ''<translate>Converts its first argument to a hex string.</translate>''<br/><!-- GIDEROSMTD:bit.tohex -->
+
[[Special:MyLanguage/bit.tohex|bit.tohex]] ''<translate>Converts its first argument to a hex string.</translate>''<br/><!-- GIDEROSMTD:bit.tohex(x,n) Converts its first argument to a hex string. -->
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
 
=== <translate>Events</translate> ===
 
=== <translate>Events</translate> ===
 
=== <translate>Constants</translate> ===
 
=== <translate>Constants</translate> ===
 
|}
 
|}

Revision as of 16:32, 13 September 2018


Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2013.09

Description

Provides bit based operations

Methods

bit.arshift Returns the bitwise arithmetic right-shift
bit.band Returns the bitwise and of its argument.
bit.bnot Returns the bitwise not of its argument.
bit.bor Returns the bitwise or of its argument.
bit.bswap Swaps the bytes of its argument and returns it
bit.bxor Returns the bitwise xor of its argument.
bit.lshift Returns the bitwise logical left-shift
bit.rol Returns the bitwise left rotation
bit.ror Returns the bitwise right rotation
bit.rshift Returns the bitwise logical right-shift
bit.tobit Normalizes a number to the numeric range for bit operations
bit.tohex Converts its first argument to a hex string.

Events

Constants