package js.lib

..
intl
webassembly
ArrayBuffer

ArrayBufferView

ArrayBufferView is a helper type representing any of the following JavaScript TypedArray types:

AsyncIterator

Native JavaScript async iterator structure.

Atomics

The Atomics object provides atomic operations as static methods. They are used with SharedArrayBuffer and ArrayBuffer objects.

BufferSource

BufferSource is a typedef used to represent objects that are either themselves an ArrayBuffer, or which are a TypedArray providing an ArrayBufferView.

DataView

Date

Creates a JavaScript Date instance that represents a single moment in time. Date objects are based on a time value that is the number of milliseconds since 1 January 1970 UTC.

Error

EvalError

Float32Array

The Float32Array typed array represents an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation)

Float64Array

The Float64Array typed array represents an array of 64-bit floating point numbers (corresponding to the C double data type) in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Function

HaxeIterator

HaxeIterator wraps a JavaScript native iterator object to enable for-in iteration in haxe. It can be used directly: new HaxeIterator(jsIterator) or via using: using HaxeIterator.

Int16Array

The Int16Array typed array represents an array of twos-complement 16-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Int32Array

The Int32Array typed array represents an array of twos-complement 32-bit signed integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Int8Array

The Int8Array typed array represents an array of twos-complement 8-bit signed integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Intl

The Intl object is the namespace for the ECMAScript Internationalization API, which provides language sensitive string comparison, number formatting,and date and time formatting. The INTL object provides access to several constructors as well as functionality common to the internationalization constructors and other language sensitive functions.

Iterator

Native JavaScript iterator structure. To enable haxe for-in iteration, use js.lib.HaxeIterator, for example for (v in new js.lib.HaxeIterator(jsIterator)) or add using js.lib.HaxeIterator; to your module

IteratorStep

KeyValue

Key/value access helper.

Map

The (native) JavaScript Map object holds key-value pairs. Any value (both objects and primitive values) may be used as either a key or a value.

MapEntry

Math

Math is a built-in object that has properties and methods for mathematical constants and functions. Not a function object.

Object

The js.lib.Object constructor creates an object wrapper.

ObjectEntry

Key/value access helper for js.lib.Object.entries().

ObjectPropertyDescriptor

See also:

ObjectPrototype

Type for

Promise

The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value.

PromiseHandler

Handler type for the Promise object.

PromiseSettleOutcome

PromiseSettleStatus

Proxy

The Proxy object is used to define custom behavior for fundamental operations (e.g. property lookup, assignment, enumeration, function invocation, etc).

ProxyHandler

RangeError

ReferenceError

Reflect

Reflect is a built-in object that provides methods for interceptable JavaScript operations. The methods are the same as those of proxy handlers. Reflect is not a function object, so it's not constructible.

RegExp

Native JavaScript regular expressions.

RegExpMatch

A return value of the RegExp.exec method.

RevocableProxy

Set

The js.Set object lets you store unique values of any type, whether primitive values or object references.

SetKeyValueIterator

key => value iterator for js.lib.Set, tracking the entry index for the key to match the behavior of haxe.ds.List

SharedArrayBuffer

The SharedArrayBuffer object is used to represent a generic, fixed-length raw binary data buffer, similar to the ArrayBuffer object, but in a way that they can be used to create views on shared memory. A SharedArrayBuffer is not a Transferable Object, unlike an ArrayBuffer which is transferable.

Symbol

SyntaxError

Thenable

A value with a then method.

ThenableStruct

TypeError

URIError

Uint16Array

The Uint16Array typed array represents an array of 16-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Uint32Array

The Uint32Array typed array represents an array of 32-bit unsigned integers in the platform byte order. If control over byte order is needed, use DataView instead. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Uint8Array

The Uint8Array typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

Uint8ClampedArray

The Uint8ClampedArray typed array represents an array of 8-bit unsigned integers clamped to 0-255; if you specified a value that is out of the range of [0,255], 0 or 255 will be set instead; if you specify a non-integer, the nearest integer will be set. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).

WaitValue

WeakMap

The WeakMap object is a collection of key/value pairs in which the keys are weakly referenced. The keys must be objects and the values can be arbitrary values.

WeakRef

The WeakRef object lets you hold a weak reference to another object, without preventing that object from getting garbage-collected. Documentation WeakRef by Mozilla Contributors, licensed under CC-BY-SA 2.5.

WeakSet

The WeakSet object lets you store weakly held objects in a collection.

WebAssembly

The WebAssembly JavaScript object acts as the namespace for all WebAssembly-related functionality.

WebAssemblyInstantiatedSource