| 318 | struct MinMaxOp { |
| 319 | static constexpr CType min(CType a, CType b) { return std::min(a, b); } |
| 320 | static constexpr CType max(CType a, CType b) { return std::max(a, b); } |
| 321 | }; |
| 322 | |
| 323 | template <CFloatingPointConcept CType> |
no outgoing calls
no test coverage detected