std::subtract_with_carry_engine<UIntType,w,s,r>::seed
来自cppreference.com
< cpp | numeric | random | subtract with carry engine
void seed( result_type value = default_seed ); |
(1) | (C++11 起) |
template< class Sseq > void seed( Sseq& seq ); |
(2) | (C++11 起) |
用新种子值重初始化随机数引擎的内部状态。
本节未完成 |
参数
value | - | 用于内部状态初始化的种子值 |
seq | - | 用于内部状态初始化的种子序列 |
异常
(无)
复杂度
本节未完成 |