xieite::factorial<>

Defined in header <xieite/math/factorial.hpp>

A lookup table, generated at compile-time, containing all representable factorial values for some arithmetic type.


Declaration

template<xieite::is_arith T>
constexpr auto factorial = /* std::array<T, ???> */


Example

int main() {
	std::print("7! = {}\n", xieite::factorial<int>[7]);
}
Output:
7! = 5040
[View in Compiler Explorer]