code wiki / (root) / _offc_bisect_many_funcs.nx

_offc_bisect_many_funcs.nx

buildroot/runtime/_offc_bisect_many_funcs.nx

385 B9 linesdepth 0pulls 0 transitivereach 0 importersview sourcekind tooltopic offc
docsdependenciesstructsconstsfunctions

dependencies 0 imports · 0 importers

imports: none

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main f8 f7 f6 f5 f4 f3

structs

none

consts

none

functions

1func f1(x: i64) -> i64 { return x + 1 }
called by 1: f2
2func f2(x: i64) -> i64 { return f1(x) + 1 }
called by 1: f3 calls 1: f1
3func f3(x: i64) -> i64 { return f2(x) + 1 }
called by 1: f4 calls 1: f2
4func f4(x: i64) -> i64 { return f3(x) + 1 }
called by 1: f5 calls 1: f3
5func f5(x: i64) -> i64 { return f4(x) + 1 }
called by 1: f6 calls 1: f4
6func f6(x: i64) -> i64 { return f5(x) + 1 }
called by 1: f7 calls 1: f5
7func f7(x: i64) -> i64 { return f6(x) + 1 }
called by 1: f8 calls 1: f6
8func f8(x: i64) -> i64 { return f7(x) + 1 }
called by 1: main calls 1: f7
9func main() -> i64 { return f8(34) }
calls 1: f8