| Expression | Return type | Pre/post-condition | Complexity | 
| T | compile-time | ||
| Creates a seed sequence
    with the same initial state as all other default-constructed seed sequences
    of type S. | constant | ||
| Creates a seed sequence
    having internal state
    that depends on some or all of the bits
    of the supplied sequence . | |||
| Same as S(il.begin(), il.end()). | same as S(il.begin(), il.end()) | ||
| void | Does nothing if rb == re. Otherwise,
    fills the supplied sequence 
    with 32-bit quantities
    that depend on the sequence supplied to the constructor
    and possibly also depend on the history
    of generate's previous invocations. | ||
| size_t | The number of 32-bit units
    that would be copied
    by a call to r.param. | constant | |
| void | Copies to the given destination
    a sequence of 32-bit units
    that can be provided
    to the constructor of a second object of type S,
    and that would reproduce in that second object
    a state indistinguishable
    from the state of the first object. |