(
py: Python<'py>,
x: PyReadonlyArrayDyn<'py, Complex64>,
)
| 74 | // wrapper of `conj` |
| 75 | #[pyfunction(name = "conj")] |
| 76 | fn conj_py<'py>( |
| 77 | py: Python<'py>, |
| 78 | x: PyReadonlyArrayDyn<'py, Complex64>, |
| 79 | ) -> Bound<'py, PyArrayDyn<Complex64>> { |
| 80 | conj(x.as_array()).into_pyarray(py) |
| 81 | } |
| 82 | |
| 83 | // example of how to extract an array from a dictionary |
| 84 | #[pyfunction] |
nothing calls this directly
no test coverage detected