| jQuery.each( object, callback )
| Returns: Object |
| A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. |
| jQuery.extend( target, object1, objectN )
| Returns: Object |
| Extend one object with one or more others, returning the original, modified, object. |
| jQuery.grep( array, callback, invert )
| Returns: Array |
| Filter items out of an array, by using a filter function. |
| jQuery.makeArray( obj )
| Returns: Array |
| Turns an array-like object into a true array. |
| jQuery.map( array, callback )
| Returns: Array |
| Translate all items in an array to another array of items. |
| jQuery.inArray( value, array )
| Returns: Number |
| Determine the index of the first parameter in the Array (-1 if not found). |
| jQuery.unique( array )
| Returns: Array |
| Remove all duplicate elements from an array of elements. |