Pacchetto | mx.data.crypto |
Classe | public class IntUtil |
Ereditarietà | IntUtil Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3.1 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
[statico]
Rotates x left n bits
| IntUtil | ||
[statico]
Rotates x right n bits
| IntUtil | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
[statico]
Outputs the hex value of a int, allowing the developer to specify
the endinaness in the process. | IntUtil | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Descrizione dei metodi
rol | () | metodo |
public static function rol(x:int, n:int):int
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3.1 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Rotates x left n bits
Parametri
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
int — result of rotation operation.
|
ror | () | metodo |
public static function ror(x:int, n:int):uint
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3.1 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Rotates x right n bits
Parametri
x:int — value to rotate.
| |
n:int — number of bits to rotate.
|
uint — result of rotation operation.
|
toHex | () | metodo |
public static function toHex(n:int, bigEndian:Boolean = false):String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Data Services per Java EE 3.1 |
Versioni runtime: | 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.
Parametri
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" )
|
Tue Jun 12 2018, 02:44 PM Z