| Modifier and Type | Class and Description |
|---|---|
class |
RegExpExecArray |
class |
RegExpMatchArray |
class |
TemplateStringsArray |
| Modifier and Type | Method and Description |
|---|---|
static Array<?> |
Array.$as(Object obj)
Casts given object to this class.
|
Array<T> |
Array.concat(T... items)
Combines two or more arrays.
|
Array<T> |
Array.filter(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn)
Returns the elements of an array that meet the condition specified in a callback function.
|
Array<T> |
Array.filter(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn,
Object thisArg)
Returns the elements of an array that meet the condition specified in a callback function.
|
static Array<String> |
Objs.keys(Object o)
Returns the names of the enumerable properties and methods of an object.
|
<U> Array<U> |
Array.map(Function.A3<? super T,? super Number,? super Array<T>,? extends U> callbackfn)
Calls a defined callback function on each element of an array, and returns an array that contains the results.
|
<U> Array<U> |
Array.map(Function.A3<? super T,? super Number,? super Array<T>,? extends U> callbackfn,
Object thisArg)
Calls a defined callback function on each element of an array, and returns an array that contains the results.
|
Array<T> |
Array.reverse()
Reverses the elements in an Array.
|
Array<T> |
Array.splice(double start)
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
|
Array<T> |
Array.splice(double start,
double deleteCount,
T... items)
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
|
| Modifier and Type | Method and Description |
|---|---|
Boolean |
Array.every(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn)
Determines whether all the members of an array satisfy the specified test.
|
Boolean |
Array.every(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn,
Object thisArg)
Determines whether all the members of an array satisfy the specified test.
|
Array<T> |
Array.filter(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn)
Returns the elements of an array that meet the condition specified in a callback function.
|
Array<T> |
Array.filter(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn,
Object thisArg)
Returns the elements of an array that meet the condition specified in a callback function.
|
double |
Uint32Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint16Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Float64Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Int16Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint8ClampedArray.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Int32Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Int8Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint8Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Float32Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint32Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint16Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Float64Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Int16Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint8ClampedArray.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Int32Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Int8Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Uint8Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
double |
Float32Array.find(Function.A3<? super Number,? super Number,? super Array<Number>,? extends Boolean> predicate,
Object thisArg)
Returns the value of the first element in the array where predicate is true, and undefined
otherwise.
|
void |
Array.forEach(Function.A3<? super T,? super Number,? super Array<T>,? extends Void> callbackfn)
Performs the specified action for each element in an array.
|
void |
Array.forEach(Function.A3<? super T,? super Number,? super Array<T>,? extends Void> callbackfn,
Object thisArg)
Performs the specified action for each element in an array.
|
<U> Array<U> |
Array.map(Function.A3<? super T,? super Number,? super Array<T>,? extends U> callbackfn)
Calls a defined callback function on each element of an array, and returns an array that contains the results.
|
<U> Array<U> |
Array.map(Function.A3<? super T,? super Number,? super Array<T>,? extends U> callbackfn,
Object thisArg)
Calls a defined callback function on each element of an array, and returns an array that contains the results.
|
<U> U |
Array.reduce(Function.A4<? super U,? super T,? super Number,? super Array<T>,? extends U> callbackfn)
Calls the specified callback function for all the elements in an array.
|
<U> U |
Array.reduce(Function.A4<? super U,? super T,? super Number,? super Array<T>,? extends U> callbackfn,
U initialValue)
Calls the specified callback function for all the elements in an array.
|
<U> U |
Array.reduceRight(Function.A4<? super U,? super T,? super Number,? super Array<T>,? extends U> callbackfn)
Calls the specified callback function for all the elements in an array, in descending order.
|
<U> U |
Array.reduceRight(Function.A4<? super U,? super T,? super Number,? super Array<T>,? extends U> callbackfn,
U initialValue)
Calls the specified callback function for all the elements in an array, in descending order.
|
Boolean |
Array.some(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn)
Determines whether the specified callback function returns true for any element of an array.
|
Boolean |
Array.some(Function.A3<? super T,? super Number,? super Array<T>,? extends Boolean> callbackfn,
Object thisArg)
Determines whether the specified callback function returns true for any element of an array.
|
Copyright © 2016. All rights reserved.