MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / range

Function range

extlibs/catch/include/catch/catch.hpp:4547–4550  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4545
4546template <typename T>
4547GeneratorWrapper<T> range(T const& start, T const& end, T const& step) {
4548 static_assert(std::is_integral<T>::value && !std::is_same<T, bool>::value, "Type must be an integer");
4549 return GeneratorWrapper<T>(pf::make_unique<RangeGenerator<T>>(start, end, step));
4550}
4551
4552template <typename T>
4553GeneratorWrapper<T> range(T const& start, T const& end) {

Callers 5

vformat_toFunction · 0.50
formatMethod · 0.50
vformat_toFunction · 0.50
formatFunction · 0.50
format_toFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected