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