(xs: &[f64], ys: &[f64])
| 16 | |
| 17 | impl Polynomial { |
| 18 | pub fn new(xs: &[f64], ys: &[f64]) -> Polynomial { |
| 19 | polynomial(xs, ys) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | pub fn polynomial(xs: &[f64], ys: &[f64]) -> Polynomial { |
nothing calls this directly
no test coverage detected