Enumerable mixin.
TODO... finish me
users
.map('friends')
.select(function(u){ return u.age > 20 })
.map('name.first')
.grep(/^T/)
$ component install component/enumerable
Mixin to obj.
var Enumerable = require('enumerable');
Enumerable(Something.Enumerabletype);
Iterate each value and invoke fn(val, i).
users.each(function(val, i){
})
Map each return value from fn(val, i).
Passing a callback function:
users.map(function(user){
return user.name.first
})
Passing a property string:
users.map('name.first')
Select all values that return a truthy value of fn(val, i).
users.select(function(user){
return user.age > 20
})
Reject all values that return a truthy value of fn(val, i).
Rejecting using a callback:
users.reject(function(user){
return user.age < 20
})
Rejecting values via ==:
data.reject(null)
users.reject(tobi)
Reject null and undefined.
[1, null, 5, undefined].compact()
// => [1,5]
Return the first value when fn(val, i) is truthy,
otherwise return undefined.
users.find(function(user){
return user.role == 'admin'
})
Return the last value when fn(val, i) is truthy,
otherwise return undefined.
users.findLast(function(user){
return user.role == 'admin'
})
Assert that at least one invocation of fn(val, i) is truthy.
For example checking to see if any pets are ferrets
pets.any(function(pet){
return pet.species == 'ferret'
})
Count the number of times fn(val, i) returns true.
var n = pets.count(function(pet){
return pet.species == 'ferret'
})
Determine the indexof obj or return -1.
Grep values using the given re.
users.map('name').grep(/^tobi/i)
Reduce with fn(accumulator, val, i) using
optional init value defaulting to the first
enumerable value.
Determine the max value.
With a callback function:
pets.max(function(pet){
return pet.age
})
With property strings:
pets.max('age')
With immediate values::
nums.max()
Determine the sum.
With a callback function:
pets.sum(function(pet){
return pet.age
})
With property strings:
pets.sum('age')
With immediate values:
nums.sum()
Return the first value, or first n values.
Return the last value, or last n values.
Return values in groups of n.
Return the value at the given index.
Return the enumerable value.
MIT