| 39 | void set_seed(u16 seed) FL_NOEXCEPT { mSeed = seed; } |
| 40 | u16 get_seed() const FL_NOEXCEPT { return mSeed; } |
| 41 | void add_entropy(u16 entropy) FL_NOEXCEPT { mSeed += entropy; } |
| 42 | |
| 43 | static constexpr result_type minimum() FL_NOEXCEPT { return 0; } |
| 44 | static constexpr result_type maximum() FL_NOEXCEPT { return 4294967295U; } |