Reference - SS.core - Array

Customization of the Array object to provide additional functionality throughout.

Functions:

 

{Array}.add
Adds object to the end of the array
o : {Object}
n : {Boolean} - Check to only add object if it doesn't already exist(optional) Default = false)
v1.0.0.20080527
[Top]
{Array}.contains
Returns true or false depending upon the existence of the object
o : {Object}
{Boolean}
v1.0.0.20080527
[Top]
{Array}.copy
Returns a copy of the array
{array}
v1.0.0.20080527
[Top]
{Array}.indexOf
Returns the index position of the object in the array
o : {Object}
{Integer}
v1.0.0.20080527
[Top]
{Array}.remove
Removes object from the array and return it
o : {Object}
{Object}
v1.0.0.20080527
[Top]
{Array}.removeAt
Removes object from the array at the specified index
i : {Integer}
{Object}
v1.0.0.20080527
[Top]