#pragma once #include #include namespace Helpers { /// Used to make the compiler evaluate beeg loops at compile time for things like generating compile-time tables template static constexpr void static_for_impl(Func&& f, std::integer_sequence) { (f(std::integral_constant{}), ...); } template static constexpr void static_for(Func&& f) { static_for_impl(std::forward(f), std::make_integer_sequence{}); } }