(&self, vm: &VirtualMachine)
| 297 | |
| 298 | #[pymethod] |
| 299 | fn __floor__(&self, vm: &VirtualMachine) -> PyResult<BigInt> { |
| 300 | try_to_bigint(self.value.floor(), vm) |
| 301 | } |
| 302 | |
| 303 | #[pymethod] |
| 304 | fn __ceil__(&self, vm: &VirtualMachine) -> PyResult<BigInt> { |
nothing calls this directly
no test coverage detected