Pakket | mx.data.crypto |
Klasse | public class IntUtil |
Overerving | IntUtil Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Openbare eigenschappen
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
[statisch]
Rotates x left n bits
| IntUtil | ||
[statisch]
Rotates x right n bits
| IntUtil | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
[statisch]
Outputs the hex value of a int, allowing the developer to specify
the endinaness in the process. | IntUtil | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Methodedetails
rol | () | methode |
public static function rol(x:int, n:int):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Rotates x left n bits
Parameters
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
int — result of rotation operation.
|
ror | () | methode |
public static function ror(x:int, n:int):uint
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Rotates x right n bits
Parameters
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
uint — result of rotation operation.
|
toHex | () | methode |
public static function toHex(n:int, bigEndian:Boolean = false):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3.1 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Outputs the hex value of a int, allowing the developer to specify the endinaness in the process. Hex output is lowercase.
Parameters
n:int — The int value to output as hex
| |
bigEndian:Boolean (default = false ) — Flag to output the int as big or little endian
|
String — A string of length 8 corresponding to the
hex representation of n ( minus the leading "0x" )
|
Wed Jun 13 2018, 11:42 AM Z