(&self)
| 111 | |
| 112 | #[inline] |
| 113 | pub fn check(&self) -> bool { |
| 114 | self.slots().has_subscript() |
| 115 | } |
| 116 | |
| 117 | pub fn length_opt(self, vm: &VirtualMachine) -> Option<PyResult<usize>> { |
| 118 | self.slots().length.load().map(|f| f(self, vm)) |
no test coverage detected