Inheritance Graph

graph BT
	Array
	Array --> Collection
	click Array "escript_type_Array"
	click Collection "escript_type_Collection"

Functions

   
+=(p0) [ESMF] Array+=Obj;
=>(p0) [ESMF] FnBinder Array=>( Callable );
_constructor([p0]) [ESMF] Array new Array([Obj*]);*/
append(p0) [ESMF] thisObj Array.append(Collection);
back() [ESMF] Object Array.back();
filter(p0) [ESMF] thisObj Array.filter(function)
front() [ESMF] Object Array.front();
implode([p0]) [ESMF] String Array.implode([delimiter])
\param delemiter default is ‘,’ */
indexOf(p0 [, p1]) [ESMF] int|false Array.indexOf(Object[,begin])
popBack() [ESMF] Obj Array.popBack();
popFront() [ESMF] Obj Array.popFront();
pushBack(p0) [ESMF] thisObj Array.pushBack(Obj[,Obj…]);
pushFront(p0) [ESMF] thisObj Array.pushFront(Obj,[Obj…]);
rSort([p0]) [ESMF] thisObj Array.rSort( [comparementFunction]);
Like Array.sort, but the array is sorted in reverse order. */
removeIndex(p0) [ESMF] thisObj Array.removeIndex(int index)
removeValue(p0 [, p1 [, p2]]) [ESMF] thisObj Array.removeValue(value [,limit [,begin]] )
resize(p0 [, p1]) [ESMF] thisObj Array.resize(Number[, Object fillValue] )
reverse() [ESMF] thisObj Array.reverse()
slice(p0 [, p1]) [ESMF] Array Array.slice( start,length );
sort([p0]) [ESMF] thisObj Array.sort( [comparementFunction]);
splice(p0, p1 [, p2]) [ESMF] thisObj Array.splice( start,length [,Array replacement] );
swap(p0) [ESMF] thisObj Array.swap( Array other );