Lines Matching full:sequences
217 // Range() returns generators providing sequences of values in a range.
227 // * The generated sequences never include end. For example, Range(1, 5)
236 // Elements in the resulting sequences will also have that type.
237 // * Condition start < end must be satisfied in order for resulting sequences
256 // - returns a generator producing sequences with elements from
259 // - returns a generator producing sequences with elements from
262 // - returns a generator producing sequences with elements from
332 // - returns a generator producing sequences with elements v1, v2, ..., vN.
361 // - returns a generator producing sequences with elements {false, true}.
382 // Combine() allows the user to combine two or more sequences to produce
383 // values of a Cartesian product of those sequences' elements.
387 // - returns a generator producing sequences with elements coming from
388 // the Cartesian product of elements from the sequences generated by
391 // of elements from sequences produces by gen1, gen2, ..., genN.