std::shuffle_order_engine
Min standard notice:
Header: <random>
shuffle_order_engine is a random number engine adaptor that shuffles the random numbers generated by the base engine. It maintains a table of size K and delivers a randomly selected number from that table when requested, replacing it with a number generated by the base engine.
# Declarations
template<
class Engine,
std::size_t K
> class shuffle_order_engine;
(since C++11)
# Example
This section is incompleteReason: no example