(&self, vm: &VirtualMachine)
| 647 | |
| 648 | #[pygetset] |
| 649 | fn c_contiguous(&self, vm: &VirtualMachine) -> PyResult<bool> { |
| 650 | self.try_not_released(vm).map(|_| self.desc.is_contiguous()) |
| 651 | } |
| 652 | |
| 653 | #[pygetset] |
| 654 | fn f_contiguous(&self, vm: &VirtualMachine) -> PyResult<bool> { |
nothing calls this directly
no test coverage detected