From 0d1f8a053214e0aa98ffa4a9630eb2ddd0daff6e Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 23 Nov 2010 14:10:10 -0800 Subject: docs for angular.Array.count --- src/apis.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'src/apis.js') diff --git a/src/apis.js b/src/apis.js index 6dd41fc4..b77161fb 100644 --- a/src/apis.js +++ b/src/apis.js @@ -239,6 +239,44 @@ var angularArray = { * @ngdoc function * @name angular.Array.count * @function + * + * @description + * Determines the number of elements in an array. Optionally it will count only those elements + * for which the `condition` evaluets to `true`. + * + * Note: this function is used to augment the Array type in angular expressions. See + * {@link angular.Array} for more info. + * + * @param {Array} array The array to count elements in. + * @param {(Function()|string)=} condition A function to be evaluated or angular expression to be + * compiled and evaluated. The element that is currently being iterated over, is exposed to + * the `condition` as `this`. + * @returns {number} Number of elements in the array (for which the condition evaluates to true). + * + * @example +
+Number of items which have one point: {{ items.$count('points==1') }}
+Number of items which have more than one point: {{items.$count('points>1')}}
+ + @scenario + it('should calculate counts', function() { + expect(binding('items.$count(\'points==1\')')).toEqual(2); + expect(binding('items.$count(\'points>1\')')).toEqual(1); + }); + + it('should recalculate when updated', function() { + using('.doc-example li:first-child').input('item.points').enter('23'); + expect(binding('items.$count(\'points==1\')')).toEqual(1); + expect(binding('items.$count(\'points>1\')')).toEqual(2); + }); */ 'count':function(array, condition) { if (!condition) return array.length; -- cgit v1.2.3