Base class for all collections

Constructor

Defined collections/Iterable.js

every Function Public


Defined collections/Iterable.js

Determine if every item in a collection meets the criteria

Source
function (){
   throw new Error("Not Implemented");
           
}
    

filter Function Public


Defined collections/Iterable.js

Filter items from a collection

Source
function (){
   throw new Error("Not Implemented");
           
}
    

forEach Function Public


Defined collections/Iterable.js

Loop through the items in a collection

Source
function (){
   throw new Error("Not Implemented");
           
}
    

map Function Public


Defined collections/Iterable.js

Map every item in a collection

Source
function (){
   throw new Error("Not Implemented");
           
}
    

reduce Function Public


Defined collections/Iterable.js

Reduce a collection

Source
function (){
   throw new Error("Not Implemented");
           
}
    

reduceRight Function Public


Defined collections/Iterable.js

Reduce a collection starting from the right most position

Source
function (){
   throw new Error("Not Implemented");
           
}
    

some Function Public


Defined collections/Iterable.js

Determing if some items in a colleciton meet the criteria

Source
function (){
   throw new Error("Not Implemented");
           
}
    

License

MIT https://github.com/C2FO/comb/raw/master/LICENSE

Meta