A | |
abs | |
absolute | |
accept, Socket | |
acos | |
acosh | |
add | |
and32 | |
and64 | |
andBytes | |
arg | |
args | |
Array | |
ArrayBoolean2D | |
ArrayBoolean3D | |
ArrayIndexException | |
ArrayNumber2D | |
ArrayNumber3D | |
ArrayString2D | |
ArrayString3D | |
asin | |
asinh | |
AssertFailedException | |
assertionsEnabled | |
atan | |
atan2 | |
atanh | |
B | |
base64Decode | |
base64Encode | |
binary | |
bind, Socket | |
bool | |
Boolean | |
breakpoint | |
ByteOutOfRangeException | |
bytes | |
Bytes | |
BytesIndexException | |
C | |
cbrt | |
ceil | |
cformat | |
chdir | |
close | |
complex | |
Complex | |
connect, Socket | |
console | |
Constants | |
copy | |
copyOverwriteIfExists | |
cos | |
cosh | |
D | |
Database | |
datetime | |
DateTime | |
debugger | |
decode | |
delete | |
Dictionary | |
DictionaryIndexException | |
DirectoryExists, FileException | |
div | |
DivideByZeroException | |
Document | |
Duration | |
DynamicConversionException |
Absolute value.
FUNCTION abs( a: Complex ): Number
Accept an incoming connection request on a socket and returns a new socket.
FUNCTION Socket.accept( self: Socket ): Socket
Inverse cosine (arc cos).
FUNCTION acos( a: Complex ): Complex
Inverse hyperbolic cosine (arc cosh).
FUNCTION acosh( a: Complex ): Complex
Complex addition.
FUNCTION add( a, b: Complex ): Complex
Bitwise logical “and” of two 32-bit words.
DECLARE NATIVE FUNCTION and32( x, y: Number ): Number
Bitwise logical “and” of two 64-bit words.
DECLARE NATIVE FUNCTION and64( x, y: Number ): Number
Bitwise logical “and” of two Bytes buffers.
DECLARE NATIVE FUNCTION andBytes( x, y: Bytes ): Bytes
Complex argument.
FUNCTION arg( a: Complex ): Number
Inverse sine (arc sin).
FUNCTION asin( a: Complex ): Complex
Inverse hyperbolic sine (arc sinh).
FUNCTION asinh( a: Complex ): Complex
Return TRUE if assertions are currently enabled.
DECLARE NATIVE FUNCTION assertionsEnabled(): Boolean
Inverse tangent (arc tan).
FUNCTION atan( a: Complex ): Complex
Inverse tangent (arc tan) of y/x.
DECLARE NATIVE FUNCTION atan2( y, x: Number ): Number
Inverse hyperbolic tangent (arc tanh).
FUNCTION atanh( a: Complex ): Complex
Decodes the provided Base64 string data back into binary data.
FUNCTION base64Decode( encoded: String ): Bytes
Encodes the provided Bytes into Base64 encoded data.
FUNCTION base64Encode( data: Bytes ): String
Bind a socket to an address and port number.
FUNCTION Socket.bind( self: Socket, address: String, port: Number )
Stop the execution as if a breakpoint were reached.
DECLARE NATIVE FUNCTION breakpoint()
Return a requested number of random bytes.
DECLARE NATIVE FUNCTION bytes( count: Number ): Bytes
Cube root.
DECLARE NATIVE FUNCTION cbrt( x: Number ): Number
Ceiling function.
DECLARE NATIVE FUNCTION ceil( x: Number ): Number
Change the current process working directory to the given path.
DECLARE NATIVE FUNCTION chdir( path: String )
Close a file.
DECLARE NATIVE FUNCTION close( f: File )
Close a socket.
FUNCTION Socket.close( self: Socket )
Connect a socket to a given host and port.
FUNCTION Socket.connect( self: Socket, host: String, port: Number )
Copies a file to a new destination.
DECLARE NATIVE FUNCTION copy( filename: String, destination: String )
Copies a file to a new destination.
DECLARE NATIVE FUNCTION copyOverwriteIfExists( filename: String, destination: String )
Cosine.
FUNCTION cos( a: Complex ): Complex
Hyperbolic cosine.
FUNCTION cosh( a: Complex ): Complex
Decode JSON data in a string to a result in a Object.
FUNCTION decode( json: String ): Object
Delete a file.
DECLARE NATIVE FUNCTION delete( filename: String )
Complex division.
FUNCTION div( a, b: Complex ): Complex