xieite::fib<>

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

A lookup table, generated at compile-time, containing all representable values of the fibonacci sequence for some arithmetic type.


Declaration

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


Example

int main() {
	std::print("F_19 = {}\n", xieite::fib<int>[19]);
}
Output:
F_19 = 4181
[View in Compiler Explorer]