doc: merged old docs for Enumerable#findAll, updated and trimmed examples

This commit is contained in:
tjcrowder 2009-09-07 14:52:38 +01:00 committed by Tobie Langel
parent adee4abe0c
commit e5c6fb4272
1 changed files with 10 additions and 2 deletions

View File

@ -284,9 +284,17 @@ var Enumerable = (function() {
/**
* Enumerable#findAll(iterator[, context]) -> Array
* - iterator (Function): An iterator function to use to test the elements.
* - context (Object): An optional object to use as `this` within
* calls to the iterator.
*
* Returns all the elements for which the iterator returned "truthy" value.
* Aliased as [[Enumerable#select]].
* Returns all the elements for which the iterator returned a truthy value.
* For the opposite operation, see [[Enumerable#reject]].
*
* ### Example
*
* [1, "two", 3, "four", 5].findAll(Object.isString);
* // -> ["two", "four"]
**/
function findAll(iterator, context) {
var results = [];