Assignment operators
Declared in <random.h>
Deleted copy assignment; an RNG must not be copied.
RandomMixin<InsecureRandomContext>&
operator=(RandomMixin<InsecureRandomContext> const& other) = delete;
» more...
Deleted move assignment; an RNG must not be moved.
RandomMixin<InsecureRandomContext>&
operator=(RandomMixin<InsecureRandomContext>&& other) = delete;
» more...
| Name | Description |
|---|---|
| other | The instance that would be assigned from. |