Loading...
Searching...
No Matches
Namespaces | Variables
bbm::precomputed Namespace Reference

Namespaces

namespace  holzschuchpacanowski
 

Variables

static constexpr auto factorials
 

Variable Documentation

◆ factorials

constexpr auto factorials
staticconstexpr
Initial value:
= []<size_t... N>(std::index_sequence<N...>)
{
unsigned long long int acc=1;
return std::array<unsigned long long int, max_factorial<unsigned long long int>()+2>{ 1, (acc*=(N+1))...};
}(std::make_index_sequence<max_factorial<unsigned long long int>()+1>{})