| 7998 | }// namespace Floating |
| 7999 | |
| 8000 | Floating::WithinUlpsMatcher WithinULP(double target, int maxUlpDiff) { |
| 8001 | return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double); |
| 8002 | } |
| 8003 | |
| 8004 | Floating::WithinUlpsMatcher WithinULP(float target, int maxUlpDiff) { |
| 8005 | return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float); |
nothing calls this directly
no test coverage detected