(self, value: float)
| 383 | |
| 384 | class FloatProtocol: |
| 385 | def __init__(self, value: float) -> None: |
| 386 | self.value = value |
| 387 | |
| 388 | def __tvm_ffi_float__(self) -> float: |
| 389 | return self.value |
nothing calls this directly
no outgoing calls
no test coverage detected