#include <types.h>
Inherits client::Object.
Inherited by client::IDBArrayKey, client::RegExpExecArray, client::RegExpMatchArray, and client::TArray< T >.
|
template<typename... Args> |
| Array (Args... args) |
|
Object *& | operator[] (int index) |
|
Object * | operator[] (int index) const |
|
int | indexOf (Object *searchElement) const |
|
int | indexOf (Object *searchElement, int fromIndex) const |
|
int | indexOf (double searchElement) const |
|
int | indexOf (double searchElement, int fromIndex) const |
|
int | lastIndexOf (Object *searchElement) const |
|
int | lastIndexOf (Object *searchElement, int fromIndex) const |
|
int | lastIndexOf (double searchElement) const |
|
int | lastIndexOf (double searchElement, int fromIndex) const |
|
template<typename... Args> |
int | push (Args... args) |
|
int | get_length () const |
|
Array * | splice (int start) |
|
template<typename... Args> |
Array * | splice (int start, int deleteCount, Args... args) |
|
Array * | slice () const |
|
Array * | slice (int start) const |
|
Array * | slice (int start, int end) const |
|
Object * | shift () |
|
void | unshift (client::Object *) |
|
Object * | pop () |
|
String * | toString () const |
|
String * | toLocaleString () const |
|
template<typename... Args> |
Array * | concat (Args &&... args) const |
|
String * | join (const String &) const |
|
Array * | reverse () |
|
Array * | sort (EventListener *callback) |
|
bool | every (EventListener *callback) |
|
bool | some (EventListener *callback) |
|
void | forEach (EventListener *callback) |
|
Array * | map (EventListener *callback) |
|
Array * | filter (EventListener *callback) |
|
Object * | reduce (EventListener *callback) |
|
Object * | reduceRight (EventListener *callback) |
|
| Object () |
|
template<typename T > |
T | valueOf () |
|
| operator double () const |
|
Object * | operator[] (const client::String &name) const |
|
void | set_ (const client::String &name, Object *v) |
|
template<typename T , typename = typename std::enable_if<std::is_arithmetic<T>::value, T>::type> |
void | set_ (const client::String &name, T v) |
|
bool | hasOwnProperty (const client::String &name) |
|
◆ Array()
template<typename... Args>
client::Array::Array |
( |
Args... |
args | ) |
|
◆ concat()
template<typename... Args>
Array* client::Array::concat |
( |
Args &&... |
args | ) |
const |
◆ every()
◆ filter()
◆ forEach()
◆ get_length()
int client::Array::get_length |
( |
| ) |
const |
◆ indexOf() [1/4]
int client::Array::indexOf |
( |
Object * |
searchElement | ) |
const |
◆ indexOf() [2/4]
int client::Array::indexOf |
( |
Object * |
searchElement, |
|
|
int |
fromIndex |
|
) |
| const |
◆ indexOf() [3/4]
int client::Array::indexOf |
( |
double |
searchElement | ) |
const |
◆ indexOf() [4/4]
int client::Array::indexOf |
( |
double |
searchElement, |
|
|
int |
fromIndex |
|
) |
| const |
◆ join()
◆ lastIndexOf() [1/4]
int client::Array::lastIndexOf |
( |
Object * |
searchElement | ) |
const |
◆ lastIndexOf() [2/4]
int client::Array::lastIndexOf |
( |
Object * |
searchElement, |
|
|
int |
fromIndex |
|
) |
| const |
◆ lastIndexOf() [3/4]
int client::Array::lastIndexOf |
( |
double |
searchElement | ) |
const |
◆ lastIndexOf() [4/4]
int client::Array::lastIndexOf |
( |
double |
searchElement, |
|
|
int |
fromIndex |
|
) |
| const |
◆ map()
◆ operator[]() [1/2]
Object*& client::Array::operator[] |
( |
int |
index | ) |
|
|
inline |
◆ operator[]() [2/2]
Object* client::Array::operator[] |
( |
int |
index | ) |
const |
|
inline |
◆ pop()
Object* client::Array::pop |
( |
| ) |
|
◆ push()
template<typename... Args>
int client::Array::push |
( |
Args... |
args | ) |
|
◆ reduce()
◆ reduceRight()
◆ reverse()
Array* client::Array::reverse |
( |
| ) |
|
◆ shift()
Object* client::Array::shift |
( |
| ) |
|
◆ slice() [1/3]
Array* client::Array::slice |
( |
| ) |
const |
◆ slice() [2/3]
Array* client::Array::slice |
( |
int |
start | ) |
const |
◆ slice() [3/3]
Array* client::Array::slice |
( |
int |
start, |
|
|
int |
end |
|
) |
| const |
◆ some()
◆ sort()
◆ splice() [1/2]
Array* client::Array::splice |
( |
int |
start | ) |
|
◆ splice() [2/2]
template<typename... Args>
Array* client::Array::splice |
( |
int |
start, |
|
|
int |
deleteCount, |
|
|
Args... |
args |
|
) |
| |
◆ toLocaleString()
String* client::Array::toLocaleString |
( |
| ) |
const |
◆ toString()
String* client::Array::toString |
( |
| ) |
const |
◆ unshift()