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