(self)
| 622 | } |
| 623 | |
| 624 | fn sqrt(self) -> ValueResult<Self> { |
| 625 | unary_match!(sqrt(&self); [F32, F64]; [Ieee32, Ieee64]) |
| 626 | } |
| 627 | |
| 628 | fn fma(self, b: Self, c: Self) -> ValueResult<Self> { |
| 629 | match (self, b, c) { |
no outgoing calls
no test coverage detected