C++ named requirements: SeedSequence (since C++11)
From cppreference.com
 
 
 
 
 
 C++ 
 Feature test macros (C++20)
 Concepts library (C++20)
 Metaprogramming library (C++11)
 Ranges library (C++20)
 Filesystem library (C++17)
 Concurrency support library (C++11)
 Execution control library (C++26)
C++ named requirements 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
  (C++11)
(C++11)
(C++11)
(C++17)
(C++11)
  (C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++17)
(C++20)
(C++20)
(C++20)
SeedSequence
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++14)
(C++14)
(C++11)
(C++11)
(C++17)
(C++14)
(C++20)
(C++20)
(C++23)
(C++23)
(C++23)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
A SeedSequence is an object that produces unsigned integer values i in the range 0 ≤ i < 232
 based on a consumed range of integer data.
[edit] Requirements
- Sis a SeedSequence type.
- qis an object of- Sand- ris a potentially constant object of- S.
- Tis the- result_type.
- ib,- ieare LegacyInputIterators with a- value_typeof unsigned integer values of at least 32 bits.
- ilis a std::initializer_list <T>.
- rb,- reare mutable LegacyRandomAccessIterators with a- value_typeof unsigned integer values of at least 32 bits.
- obis a LegacyOutputIterator.
| Expression | Type | Notes | Complexity | 
|---|---|---|---|
| S::result_type | T | Unsigned integer of at least 32 bits. | Compile-time | 
| S() | Creates a seed sequence with the same initial state as other default-constructed seed sequences of type S. | Constant | |
| S(ib, ie) | Creates a seed sequence with internal state depending on some or all supplied input bits by [ib, ie). | O(ie - ib) | |
| S(il) | The same as S(il.begin(), il.end()). | ||
| q.generate(rb, re) | void | Fills [rb, re)with 32-bit quantities depending on the initial supplied values and potential previous calls togenerate. Ifrb == re, it does nothing. | O(re - rb) | 
| r.size() | size_t | The amount of 32-bit integers copied by param. | Constant | 
| r.param(ob) | void | Copies 32-bit values to obthat would reproduce the current state of the object if passed to a constructor ofS. | O(r.size()) |