(py: Python<'py>, vec: Vec<T>)
| 542 | /// ``` |
| 543 | #[inline(always)] |
| 544 | pub fn from_vec<'py>(py: Python<'py>, vec: Vec<T>) -> Bound<'py, Self> { |
| 545 | vec.into_pyarray(py) |
| 546 | } |
| 547 | |
| 548 | /// Construct a one-dimensional array from an [`Iterator`]. |
| 549 | /// |
nothing calls this directly
no test coverage detected