- make-random-source-generator iprocedure
Returns a generator of random sources. Each invocation of the generator returns a new random source created by calling make-random-source (srfi-27). The new random source is passed to random-source-pseudo-randomize! with i, and successive integers j (starting with 0), before being returned.
The random sources are guaranteed to be distinct as long as i and j are not too large and the generator is not called too many times. What counts as "too large/many" depends on the SRFI 27 implementation; the sample implementation works correctly if i < 2^63 and j < 2^51 and no more than 2^76 values are generated.