(&self)
| 711 | )] |
| 712 | impl PyArray { |
| 713 | fn read(&self) -> PyRwLockReadGuard<'_, ArrayContentType> { |
| 714 | self.array.read() |
| 715 | } |
| 716 | |
| 717 | fn write(&self) -> PyRwLockWriteGuard<'_, ArrayContentType> { |
| 718 | self.array.write() |
no outgoing calls
no test coverage detected