diff options
| author | Igor Minar | 2010-11-22 10:23:45 -0800 | 
|---|---|---|
| committer | Igor Minar | 2010-11-22 10:57:32 -0800 | 
| commit | efec0c358d3cb840275037d5f86347130bb86573 (patch) | |
| tree | a727e5a244fc36c7f9bdd55e9b2bb0bcaba7c4cf /src | |
| parent | 1f59de35c94448e32ac72c0a9b8541ad4f8696ab (diff) | |
| download | angular.js-efec0c358d3cb840275037d5f86347130bb86573.tar.bz2 | |
Add angular.Array.limitTo and docs for angular.Array
Diffstat (limited to 'src')
| -rw-r--r-- | src/apis.js | 56 | 
1 files changed, 56 insertions, 0 deletions
| diff --git a/src/apis.js b/src/apis.js index a9a9379d..b34f131a 100644 --- a/src/apis.js +++ b/src/apis.js @@ -19,6 +19,25 @@ var angularCollection = {  var angularObject = {    'extend': extend  }; + +/** + * @workInProgress + * @ngdoc overview + * @name angular.Array + * + * @description + * Utility functions for manipulation with JavaScript Array objects. + * + * These functions are exposed in two ways: + * + * - **in angular expressions**: the functions are bound to the Array objects and augment the Array + *   type as array methods. The names of these methods are prefixed with `$` character to minimize + *   naming collisions. To call a method, invoke `myArrayObject.$foo(params)`. + * + * - **in JavaScript code**: the functions don't augment the Array type and must be invoked as + *   functions of `angular.Array` as `angular.Array.foo(myArrayObject, params)`. + * + */  var angularArray = {    'indexOf': indexOf,    'sum':function(array, expression) { @@ -173,7 +192,44 @@ var angularArray = {          return t1 < t2 ? -1 : 1;        }      } +  }, + + +  /** +   * @workInProgress +   * @ngdoc function +   * @name angular.Array.limitTo +   * @function +   * +   * @description +   * Creates a new array containing only the first, or last `limit` number of elements of the +   * source `array`. +   * +   * @param {Array} array Source array to be limited. +   * @param {string|Number} limit The length of the returned array. If the number is positive, the +   *     first `limit` items from the source array will be copied, if the number is negative, the +   *     last `limit` items will be copied. +   * @returns {Array} New array of length `limit`. +   * +   */ +  limitTo: function(array, limit) { +    limit = parseInt(limit, 10); +    var out = [], +        i, n; + +    if (limit > 0) { +      i = 0; +      n = limit; +    } else { +      i = array.length + limit; +      n = array.length; +    } + +    for (; i<n; i++) { +      out.push(array[i]); +    } +    return out;    }  }; | 
