Difference between revisions of "Bit"
m (→Description) |
|||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Supported platforms:''' android | + | <!-- GIDEROSOBJ:bit --> |
+ | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/> | ||
'''Available since:''' Gideros 2013.09<br/> | '''Available since:''' Gideros 2013.09<br/> | ||
− | === | + | |
− | < | + | === Description === |
+ | |||
+ | '''<big>THIS PLUGIN IS DEPRECATED SINCE GIDEROS 2022.1: use [[Bitwise_Operators|BITWISE OPERATORS]] instead</big>''' | ||
+ | |||
+ | Provides bit based operations. | ||
+ | |||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === | + | |
− | [[ | + | === Methods === |
− | [[ | + | [[bit.arshift]] ''returns the bitwise arithmetic right-shift''<br/><!-- GIDEROSMTD:bit.arshift(x,n) Returns the bitwise arithmetic right-shift --> |
− | [[ | + | [[bit.band]] ''returns the bitwise and of its argument.''<br/><!-- GIDEROSMTD:bit.band(x1,x2) Returns the bitwise and of its argument. --> |
− | [[ | + | [[bit.bnot]] ''returns the bitwise not of its argument.''<br/><!-- GIDEROSMTD:bit.bnot(x) Returns the bitwise not of its argument. --> |
− | [[ | + | [[bit.bor]] ''returns the bitwise or of its argument.''<br/><!-- GIDEROSMTD:bit.bor(x1,x2) Returns the bitwise or of its argument. --> |
− | [[ | + | [[bit.bswap]] ''swaps the bytes of its argument and returns it''<br/><!-- GIDEROSMTD:bit.bswap(x) Swaps the bytes of its argument and returns it --> |
− | [[ | + | [[bit.bxor]] ''returns the bitwise xor of its argument.''<br/><!-- GIDEROSMTD:bit.bxor(x1,x2) Returns the bitwise xor of its argument. --> |
− | [[ | + | [[bit.lshift]] ''returns the bitwise logical left-shift''<br/><!-- GIDEROSMTD:bit.lshift(x,n) Returns the bitwise logical left-shift --> |
− | [[ | + | [[bit.rol]] ''returns the bitwise left rotation''<br/><!-- GIDEROSMTD:bit.rol(x,n) Returns the bitwise left rotation --> |
− | [[ | + | [[bit.ror]] ''returns the bitwise right rotation''<br/><!-- GIDEROSMTD:bit.ror(x,n) Returns the bitwise right rotation --> |
− | [[ | + | [[bit.rshift]] ''returns the bitwise logical right-shift''<br/><!-- GIDEROSMTD:bit.rshift(x,n) Returns the bitwise logical right-shift --> |
− | [[ | + | [[bit.tobit]] ''normalizes a number to the numeric range for bit operations''<br/><!-- GIDEROSMTD:bit.tobit(x) Normalizes a number to the numeric range for bit operations --> |
+ | [[bit.tohex]] ''converts its first argument to a hex string.''<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;"| | ||
− | === | + | === Events === |
− | === | + | === Constants === |
|} | |} | ||
+ | |||
+ | {{GIDEROS IMPORTANT LINKS}} |
Latest revision as of 18:34, 17 March 2023
Supported platforms:
Available since: Gideros 2013.09
Description
THIS PLUGIN IS DEPRECATED SINCE GIDEROS 2022.1: use BITWISE OPERATORS instead
Provides bit based operations.
Methodsbit.arshift returns the bitwise arithmetic right-shift |
EventsConstants |