chickadee » integer-map » fxmapping->generator

fxmapping->generator fxmappingprocedure

Returns a srfi-158 generator which produces the associations of fxmapping as key/value pairs in increasing order of key.

Example:

(generator->list (fxmapping->generator (fxmapping 3 "yar" 2 "troi")))
 ⇒ ((2 . "troi") (3 . "yar"))