Class Index | File Index

Classes


Function Namespace Pot.Deferred.filter


Defined in: <potlite.js>.

Function Namespace Summary
Constructor Attributes Constructor Name and Description
 
Pot.Deferred.filter(object, callback, (context))
Creates a new object with all elements that pass the test implemented by the provided function.
Field Summary
Field Attributes Field Name and Description
 
Iterates "filter" loop with slower speed.
 
Iterates "filter" loop with fast speed.
 
Iterates "filter" loop with slowest speed.
 
Iterates "filter" loop with fastest speed.
 
Iterates "filter" loop with default speed.
 
Iterates "filter" loop with faster speed.
 
Iterates "filter" loop with slow speed.
Function Namespace Detail
Pot.Deferred.filter(object, callback, (context))
Creates a new object with all elements that pass the test implemented by the provided function. Iteration will use the results of the previous chain. This method like Array.prototype.filter
  var numbers = [12, 5, 8, 130, 44];
  Pot.Deferred.filter(numbers, function(value, index, array) {
    return (value >= 10);
  }).then(function(result) {
    debug(result);
  });
  // @results result = [12, 130, 44]
Parameters:
{Array|Object|*} object
A target object.
{Function} callback
A callback function.
{*} (context)
(Optional) Object to use as `this` when executing callback.
Returns:
{*} Return the result of each callbacks.
Field Detail
{Function} doze
Iterates "filter" loop with slower speed.

{Function} fast
Iterates "filter" loop with fast speed.

{Function} limp
Iterates "filter" loop with slowest speed.

{Function} ninja
Iterates "filter" loop with fastest speed.

{Function} normal
Iterates "filter" loop with default speed.

{Function} rapid
Iterates "filter" loop with faster speed.

{Function} slow
Iterates "filter" loop with slow speed.

Documentation generated by JsDoc Toolkit 2.4.0 on Fri Sep 21 2012 19:35:45 GMT+0900 (JST)