A | |
abs | |
accept, Socket | |
acos | |
acosh | |
add | |
and32 | |
and64 | |
andBytes | |
arg | |
asin | |
asinh | |
assertionsEnabled | |
atan | |
atan2 | |
atanh | |
B | |
base64Decode | |
base64Encode | |
bind, Socket | |
breakpoint | |
bytes | |
C | |
cbrt | |
ceil | |
chdir | |
close | |
connect, Socket | |
copy | |
copyOverwriteIfExists | |
cos | |
cosh | |
D | |
decode | |
delete | |
div | |
E | |
elapsed, Stopwatch | |
encode | |
erf | |
erfc | |
exec | |
execRaw | |
executorName | |
exists | |
exit | |
exp | |
exp2 | |
expm1 | |
extract32 | |
extract64 | |
F | |
field | |
files | |
find | |
floor | |
flush | |
format | |
frexp | |
fromCodePoint |
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
Return the current total elapsed time.
FUNCTION Stopwatch.elapsed( self: Stopwatch ): Number
Encode a value in a Object to JSON data in a string.
FUNCTION encode( data: Object ): String
Error function.
DECLARE NATIVE FUNCTION erf( x: Number ): Number
Complementary error function.
DECLARE NATIVE FUNCTION erfc( x: Number ): Number
Execute a SQL statement in the given database and return the result set.
DECLARE NATIVE FUNCTION exec( db: Database, sql: String, parameters: Dictionary<String> ): Rows
Execute a SQL statement in the given database and return the result set.
DECLARE NATIVE FUNCTION execRaw( db: Database, sql: String ): Rows
Return the name of the executor.
DECLARE NATIVE FUNCTION executorName(): String
Check to see whether a name exists in the filesystem.
DECLARE NATIVE FUNCTION exists( filename: String ): Boolean
Return to the operating system immediately with the given exit code.
DECLARE NATIVE FUNCTION exit( x: Number )
Complex exponentiation.
FUNCTION exp( a: Complex ): Complex
Exponentiation (base 2).
DECLARE NATIVE FUNCTION exp2( x: Number ): Number
Calculates exp(x)-1.0.
DECLARE NATIVE FUNCTION expm1( x: Number ): Number
Extract a range of bits from a 32-bit word.
DECLARE NATIVE FUNCTION extract32( x, n, w: Number ): Number
Extract a range of bits from a 64-bit word.
DECLARE NATIVE FUNCTION extract64( x, n, w: Number ): Number
Helper function to create Field records.
FUNCTION field( name: String, type: Type, width: Number ): Field
Given a path name, return an array containing the names of the files in that directory.
DECLARE NATIVE FUNCTION files( path: String ): Array<String>
Find the index of a string within another.
DECLARE NATIVE FUNCTION find( s: String, t: String ): Number
Floor function.
DECLARE NATIVE FUNCTION floor( x: Number ): Number
Flush a file.
DECLARE NATIVE FUNCTION flush( f: File )
Format a string based on the formatting mini-language.
FUNCTION format( s: String, fmt: String ): String
Decomposes a floating point number into a normalised fraction and an integral power of 10.
DECLARE NATIVE FUNCTION frexp( x: Number, OUT exp: Number ): Number
Return a string containing the single code point.
DECLARE NATIVE FUNCTION fromCodePoint( code: Number ): String