MCPcopy Create free account
hub / github.com/boostorg/compute / generate_n

Function generate_n

include/boost/compute/algorithm/generate_n.hpp:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22/// [\p first, \p first + \p count).
23template<class OutputIterator, class Size, class Generator>
24inline void generate_n(OutputIterator first,
25 Size count,
26 Generator generator,
27 command_queue &queue = system::default_queue())
28{
29 ::boost::compute::generate(first, first + count, generator, queue);
30}
31
32} // end compute namespace
33} // end boost namespace

Callers

nothing calls this directly

Calls 1

generateFunction · 0.85

Tested by

no test coverage detected