Hi guys,
Supposing I had a function that generated a list of non continuous numbers, for example fibonnoci sequence, is there a way to generate and store that list at compile time to be use at run time in some other function.
I've been searching the web for compile time/metaprogramming algorithms and most of the ones I've found use enums and then only really to have access to a particular Nth value where I want all the values in a given range available in say a vector.
