| 81 | }; |
| 82 | |
| 83 | bool IsPositive(const Scalar& scalar) { |
| 84 | IsPositiveVisitor visitor{}; |
| 85 | std::ignore = VisitScalarInline(scalar, &visitor); |
| 86 | return visitor.result; |
| 87 | } |
| 88 | |
| 89 | struct RoundUtil { |
| 90 | // Calculate powers of ten with arbitrary integer exponent |
no test coverage detected