Constructors
Declared in <random.h>
Construct a mixin with an empty bit buffer.
constexpr
RandomMixin() noexcept = default;
» more...
Deleted copy constructor; an RNG must not be copied.
RandomMixin(RandomMixin const& other) = delete;
» more...
Deleted move constructor; an RNG must not be moved.
RandomMixin(RandomMixin&& other) = delete;
» more...
| Name | Description |
|---|---|
| other | The instance that would be copied. |