(f: fn(f64) -> f64, x: f64)
| 67 | } |
| 68 | |
| 69 | fn apply_twice(f: fn(f64) -> f64, x: f64) -> f64 { |
| 70 | f(f(x)) |
| 71 | } |
| 72 | |
| 73 | fn choose_curve(which: i32) -> fn(f64) -> f64 { |
| 74 | if which == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected