Index
$#! · 0-9 · A · B · C · D · E · F · G · H · I · J · K · L · M · N · O · P · Q · R · S · T · U · V · W · X · Y · Z
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
FUNCTION abs(a: Complex): Number
Absolute value.
set absolute position
FUNCTION Socket.accept(self: Socket): Socket
Accept an incoming connection request on a socket and returns a new socket.
FUNCTION acos(a: Complex): Complex
Inverse cosine (arc cos).
FUNCTION acosh(a: Complex): Complex
Inverse hyperbolic cosine (arc cosh).
FUNCTION add( a,
b: Complex): Complex
Complex addition.
DECLARE NATIVE FUNCTION and32( x,
y: Number): Number
Bitwise logical “and” of two 32-bit words.
DECLARE NATIVE FUNCTION and64( x,
y: Number): Number
Bitwise logical “and” of two 64-bit words.
DECLARE NATIVE FUNCTION andBytes( x,
y: Bytes): Bytes
Bitwise logical “and” of two Bytes buffers.
FUNCTION arg(a: Complex): Number
Complex argument.
Contains the command line arguments passed to the current process when it started.
Parameterised sequence type.
A two-dimensional array of Booleans.
A three-dimensional array of Booleans.
An array index is not valid or out of range.
A two-dimensional array of Numbers.
A three-dimensional array of Numbers.
A two-dimensional array of Strings.
A three-dimensional array of Strings.
FUNCTION asin(a: Complex): Complex
Inverse sine (arc sin).
FUNCTION asinh(a: Complex): Complex
Inverse hyperbolic sine (arc sinh).
Assert failed.
DECLARE NATIVE FUNCTION assertionsEnabled(): Boolean
Return TRUE if assertions are currently enabled.
FUNCTION atan(a: Complex): Complex
Inverse tangent (arc tan).
DECLARE NATIVE FUNCTION atan2( y,
x: Number): Number
Inverse tangent (arc tan) of y/x.
FUNCTION atanh(a: Complex): Complex
Inverse hyperbolic tangent (arc tanh).
FUNCTION base64Decode(encoded: String): Bytes
Decodes the provided Base64 string data back into binary data.
FUNCTION base64Encode(data: Bytes): String
Encodes the provided Bytes into Base64 encoded data.
Bitwise binary logical operations on 32-bit words.
FUNCTION Socket.bind(self: Socket,
address: String,
port: Number)
Bind a socket to an address and port number.
boolean
TRUE or FALSE.
DECLARE NATIVE FUNCTION breakpoint()
Stop the execution as if a breakpoint were reached.
A byte is out of range in toBytes().
DECLARE NATIVE FUNCTION bytes(count: Number): Bytes
Return a requested number of random bytes.
Bytes.
A byte index is not valid or out of range.
DECLARE NATIVE FUNCTION cbrt(x: Number): Number
Cube root.
DECLARE NATIVE FUNCTION ceil(x: Number): Number
Ceiling function.
Provide printf-like formatting similar to the C standard library.
DECLARE NATIVE FUNCTION chdir(path: String)
Change the current process working directory to the given path.
DECLARE NATIVE FUNCTION close(f: File)
Close a file.
FUNCTION Socket.close(self: Socket)
Close a socket.
Mathematical functions for complex numbers.
Complex number type.
FUNCTION Socket.connect(self: Socket,
host: String,
port: Number)
Connect a socket to a given host and port.
Functions for console input and output.
DECLARE NATIVE FUNCTION copy(filename: String,
destination: String)
Copies a file to a new destination.
DECLARE NATIVE FUNCTION copyOverwriteIfExists(filename: String,
destination: String)
Copies a file to a new destination.
FUNCTION cos(a: Complex): Complex
Cosine.
FUNCTION cosh(a: Complex): Complex
Hyperbolic cosine.
Opaque type representing a SQLite database.
Functions for date and time manipulation.
Represents a particular instant in global time, broken down to components in UTC.
Functions for interacting with an attached debugger.
FUNCTION decode(json: String): Object
Decode JSON data in a string to a result in a Object.
DECLARE NATIVE FUNCTION delete(filename: String)
Delete a file.
Parameterised map type from String to the given type.
A dictionary index value does not exist.
Indicates that a directory already exists when calling mkdir.
FUNCTION div( a,
b: Complex): Complex
Complex division.
Divide by zero.
Represents an XML document.
Represents a specific amount of time measured in seconds.
Dynamic conversion exception.
Close