(index ("list-comprehensions" 0) ("range" 215) ("range" 215) ("range" 215) ("repeat" 444) ("iterate-times" 579) ("iterate-while" 751) ("iterate-until" 940))
(def (sig (procedure "(list-comprehensions sym ..)" (id list-comprehensions))) (p "Documentation procedure. Without argument, returns the list of exported symbols, with argument the documentation of that symbol."))
(def (sig (procedure "(range upto)" (id range)) (procedure "(range from upto)" (id range)) (procedure "(range from upto step)" (id range))) (p "creates a list of numbers with given limits from defaults to 0 step defaults to 1"))
(def (sig (procedure "(repeat times)" (id repeat))) (p "returns a unary procedure which repeats its only argument a number of times"))
(def (sig (procedure "(iterate-times fn times)" (id iterate-times))) (p "returns a unary procedure which iterates the function fn on its only argument a number of times"))
(def (sig (procedure "(iterate-while fn ok?)" (id iterate-while))) (p "returns a unary procedure which iterates the function fn on its only argument while the predicate ok? returns true"))
(def (sig (procedure "(iterate-until fn ok?)" (id iterate-until))) (p "returns a unary procedure which iterates the function fn on its only argument until the predicate ok? returns true"))
