xieite ::repeat ()
Defined in header <xieite/fn/repeat.hpp>
Repeatedly calls a functor some constant number of times.
Passes indices to the given functor as an individual template argument.
Declarations
#0Repeats for some constant integer.template <std ::integral auto n >constexpr void repeat (auto&& fn ,auto&&... args )XIEITE_ARROW_RET (/* fn.template operator()<0>(args...), fn.template operator()<1>(args...), fn.template operator()<???>(args...), fn.template operator()<(n - 1)>(args...) */ )
#1
Repeats for the number of types passed.template <typename... Ts >constexpr void repeat (auto&& fn ,auto&&... args )XIEITE_ARROW_RET (xieite ::repeat <sizeof... (Ts )>(XIEITE_FWD (fn ),XIEITE_FWD (args )...))
Example
Output:int main () {xieite ::repeat <5 >([]<int i >static {xieite ::dump (i ); }); }
[View in Compiler Explorer]0 1 2 3 4