File project.js


Function Interfaces Summary
any combinator(any r, any n)
A combinator function is used by Popcorn.Core.seq and Popcorn.Core.replicate to accumulate results of subsequent generator executions.
any generator(any input)
A generator is a function that takes one argument and returns an object of the form:

   {
     result: value,
     state : state_obj
   }
 
'result' is the evaluation result of the generator.