logarithmic_fibonacci(n) returns the nth fibonacci number This function uses the definition of Fibonacci where: F(0) = 0, F(1) = 1 and F(n+1) = F(n) + F(n-1) for n>0 Warning: This will overflow the 128-bit unsigned integer at n=186
(n: u32)
source not stored for this graph (policy: none)
nothing calls this directly
no test coverage detected