Executes a provided function once per array element.
forEach: function( fn, bind )
Creates a new array with all elements that pass the test implemented by the provided function.
filter: function( fn, bind )
Creates a new array with the results of calling a provided function on every element in this array.
map: function( fn, bind )
Tests whether all elements in the array pass the test implemented by the provided function.
every: function( fn, bind )
Tests whether some element in the array passes the test implemented by the provided function.
some: function( fn, bind )
Returns the first index at which a given element can be found in the array, or -1 if it is not present.
indexOf: function( item, from )
Not documented
normalize: function( sum )
Test wether the array equals to the one passed as parameter.
equals: function( compare )
Not documented
detect: function( iterator )