std::discard_block_engine

Header: <random>

discard_block_engine is a pseudo-random number engine adaptor that discards a certain amount of data produced by the base engine. From each block of size P generated by the base engine, the adaptor keeps only R numbers, discarding the rest.

# Declarations

template<
class Engine,
std::size_t P, std::size_t R
> class discard_block_engine;

(since C++11)

# Example

This section is incompleteReason: no example