Commit 2025-11-25 16:28 9011acf6
View on Github →feat(Data/Int): define Int.fib, the Fibonacci numbers on the integers (#30936)
We define Int.fib, the integer version of Nat.fib, which satisfies Int.fib 0 = 0, Int.fib 1 = 1, and Int.fib (n + 2) = Int.fib n + Int.fib (n + 1).