Skip to content

Float16Array

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:26

A typed array of 16-bit float values. The contents are initialized to 0. If the requested number of bytes could not be allocated an exception is raised.

Type ParameterDefault type
TArrayBuffer extends ArrayBufferLikeArrayBufferLike
[index: number]: number
readonly [toStringTag]: "Float16Array";

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:369


readonly buffer: TArrayBuffer;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:35

The ArrayBuffer instance referenced by the array.


readonly byteLength: number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:40

The length in bytes of the array.


readonly byteOffset: number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:45

The offset in bytes of the array.


readonly BYTES_PER_ELEMENT: number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:30

The size in bytes of each element in the array.


readonly length: number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:201

The length of the array.

iterator: ArrayIterator<number>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:352

ArrayIterator<number>


at(index): undefined | number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:51

Returns the item located at the specified index.

ParameterTypeDescription
indexnumberThe zero-based index of the desired code unit. A negative index will count back from the last item.

undefined | number


copyWithin(
target,
start,
end?): this;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:62

Returns the this object after copying a section of the array identified by start and end to the same array starting at position target

ParameterTypeDescription
targetnumberIf target is negative, it is treated as length+target where length is the length of the array.
startnumberIf start is negative, it is treated as length+start. If end is negative, it is treated as length+end.
end?numberIf not specified, length of the this object is used as its default value.

this


entries(): ArrayIterator<[number, number]>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:357

Returns an array of key, value pairs for every entry in the array

ArrayIterator<[number, number]>


every(predicate, thisArg?): boolean;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:72

Determines whether all the members of an array satisfy the specified test.

ParameterTypeDescription
predicate(value, index, array) => unknownA function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.
thisArg?anyAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

boolean


fill(
value,
start?,
end?): this;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:82

Changes all array elements from start to end index to a static value and returns the modified array

ParameterTypeDescription
valuenumbervalue to fill array section with
start?numberindex to start filling the array at. If start is negative, it is treated as length+start where length is the length of the array.
end?numberindex to stop filling the array at. If end is negative, it is treated as length+end.

this


filter(predicate, thisArg?): Float16Array<ArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:91

Returns the elements of an array that meet the condition specified in a callback function.

ParameterTypeDescription
predicate(value, index, array) => anyA function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
thisArg?anyAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

Float16Array<ArrayBuffer>


find(predicate, thisArg?): undefined | number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:102

Returns the value of the first element in the array where predicate is true, and undefined otherwise.

ParameterTypeDescription
predicate(value, index, obj) => booleanfind calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.
thisArg?anyIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

undefined | number


findIndex(predicate, thisArg?): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:113

Returns the index of the first element in the array where predicate is true, and -1 otherwise.

ParameterTypeDescription
predicate(value, index, obj) => booleanfind calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.
thisArg?anyIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

number


findLast<S>(predicate, thisArg?): undefined | S;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:124

Returns the value of the last element in the array where predicate is true, and undefined otherwise.

Type Parameter
S extends number
ParameterTypeDescription
predicate(value, index, array) => value is SfindLast calls predicate once for each element of the array, in descending order, until it finds one where predicate returns true. If such an element is found, findLast immediately returns that element value. Otherwise, findLast returns undefined.
thisArg?anyIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

undefined | S

findLast(predicate, thisArg?): undefined | number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:132

ParameterType
predicate(value, index, array) => unknown
thisArg?any

undefined | number


findLastIndex(predicate, thisArg?): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:150

Returns the index of the last element in the array where predicate is true, and -1 otherwise.

ParameterTypeDescription
predicate(value, index, array) => unknownfindLastIndex calls predicate once for each element of the array, in descending order, until it finds one where predicate returns true. If such an element is found, findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.
thisArg?anyIf provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

number


forEach(callbackfn, thisArg?): void;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:166

Performs the specified action for each element in an array.

ParameterTypeDescription
callbackfn(value, index, array) => voidA function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
thisArg?anyAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

void


includes(searchElement, fromIndex?): boolean;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:173

Determines whether an array includes a certain element, returning true or false as appropriate.

ParameterTypeDescription
searchElementnumberThe element to search for.
fromIndex?numberThe position in this array at which to begin searching for searchElement.

boolean


indexOf(searchElement, fromIndex?): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:181

Returns the index of the first occurrence of a value in an array.

ParameterTypeDescription
searchElementnumberThe value to locate in the array.
fromIndex?numberThe array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.

number


join(separator?): string;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:188

Adds all the elements of an array separated by the specified separator string.

ParameterTypeDescription
separator?stringA string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.

string


keys(): ArrayIterator<number>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:362

Returns an list of keys in the array

ArrayIterator<number>


lastIndexOf(searchElement, fromIndex?): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:196

Returns the index of the last occurrence of a value in an array.

ParameterTypeDescription
searchElementnumberThe value to locate in the array.
fromIndex?numberThe array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.

number


map(callbackfn, thisArg?): Float16Array<ArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:211

Calls a defined callback function on each element of an array, and returns an array that contains the results.

ParameterTypeDescription
callbackfn(value, index, array) => numberA function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
thisArg?anyAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

Float16Array<ArrayBuffer>


reduce(callbackfn): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:223

Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

ParameterTypeDescription
callbackfn(previousValue, currentValue, currentIndex, array) => numberA function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.

number

reduce(callbackfn, initialValue): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:224

ParameterType
callbackfn(previousValue, currentValue, currentIndex, array) => number
initialValuenumber

number

reduce<U>(callbackfn, initialValue): U;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:236

Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

Type Parameter
U
ParameterTypeDescription
callbackfn(previousValue, currentValue, currentIndex, array) => UA function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
initialValueUIf initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.

U


reduceRight(callbackfn): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:248

Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

ParameterTypeDescription
callbackfn(previousValue, currentValue, currentIndex, array) => numberA function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.

number

reduceRight(callbackfn, initialValue): number;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:249

ParameterType
callbackfn(previousValue, currentValue, currentIndex, array) => number
initialValuenumber

number

reduceRight<U>(callbackfn, initialValue): U;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:261

Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.

Type Parameter
U
ParameterTypeDescription
callbackfn(previousValue, currentValue, currentIndex, array) => UA function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
initialValueUIf initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.

U


reverse(): this;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:266

Reverses the elements in an Array.

this


set(array, offset?): void;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:273

Sets a value or an array of values.

ParameterTypeDescription
arrayArrayLike<number>A typed or untyped array of values to set.
offset?numberThe index in the current array at which the values are to be written.

void


slice(start?, end?): Float16Array<ArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:280

Returns a section of an array.

ParameterTypeDescription
start?numberThe beginning of the specified portion of the array.
end?numberThe end of the specified portion of the array. This is exclusive of the element at the index ‘end’.

Float16Array<ArrayBuffer>


some(predicate, thisArg?): boolean;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:290

Determines whether the specified callback function returns true for any element of an array.

ParameterTypeDescription
predicate(value, index, array) => unknownA function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.
thisArg?anyAn object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

boolean


sort(compareFn?): this;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:301

Sorts an array.

ParameterTypeDescription
compareFn?(a, b) => numberFunction used to determine the order of the elements. It is expected to return a negative value if first argument is less than second argument, zero if they’re equal and a positive value otherwise. If omitted, the elements are sorted in ascending order. [11,2,22,1].sort((a, b) => a - b)

this


subarray(begin?, end?): Float16Array<TArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:309

Gets a new Float16Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.

ParameterTypeDescription
begin?numberThe index of the beginning of the array.
end?numberThe index of the end of the array.

Float16Array<TArrayBuffer>


toLocaleString(locales?, options?): string;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:314

Converts a number to a string by using the current locale.

ParameterType
locales?string | string[]
options?NumberFormatOptions

string


toReversed(): Float16Array<ArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:319

Copies the array and returns the copy with the elements in reverse order.

Float16Array<ArrayBuffer>


toSorted(compareFn?): Float16Array<ArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:331

Copies and sorts the array.

ParameterTypeDescription
compareFn?(a, b) => numberFunction used to determine the order of the elements. It is expected to return a negative value if the first argument is less than the second argument, zero if they’re equal, and a positive value otherwise. If omitted, the elements are sorted in ascending order. const myNums = Float16Array.from([11.25, 2, -22.5, 1]); myNums.toSorted((a, b) => a - b) // Float16Array(4) [-22.5, 1, 2, 11.5]

Float16Array<ArrayBuffer>


toString(): string;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:336

Returns a string representation of an array.

string


valueOf(): this;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:339

Returns the primitive value of the specified object.

this


values(): ArrayIterator<number>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:367

Returns an list of values in the array

ArrayIterator<number>


with(index, value): Float16Array<ArrayBuffer>;

Defined in: node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts:348

Copies the array and inserts the given number at the provided index.

ParameterTypeDescription
indexnumberThe index of the value to overwrite. If the index is negative, then it replaces from the end of the array.
valuenumberThe value to insert into the copied array.

Float16Array<ArrayBuffer>

A copy of the original array with the inserted value.