| 9203 | }// namespace Floating |
| 9204 | |
| 9205 | Floating::WithinUlpsMatcher WithinULP(double target, int maxUlpDiff) { |
| 9206 | return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double); |
| 9207 | } |
| 9208 | |
| 9209 | Floating::WithinUlpsMatcher WithinULP(float target, int maxUlpDiff) { |
| 9210 | return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float); |
nothing calls this directly
no test coverage detected