(x: ArgIntoFloat, vm: &VirtualMachine)
| 323 | |
| 324 | #[pyfunction] |
| 325 | fn erfc(x: ArgIntoFloat, vm: &VirtualMachine) -> PyResult<f64> { |
| 326 | pymath::math::erfc(x.into_float()).map_err(|err| pymath_exception(err, vm)) |
| 327 | } |
| 328 | |
| 329 | #[pyfunction] |
| 330 | fn gamma(x: ArgIntoFloat, vm: &VirtualMachine) -> PyResult<f64> { |
no test coverage detected