| 96 | |
| 97 | template <MR::ImGuiMath::detail::Vector A> [[nodiscard]] constexpr A operator+( A a ) { return a; } |
| 98 | template <MR::ImGuiMath::detail::Vector A> [[nodiscard]] constexpr A operator-( A a ) { return MR::ImGuiMath::applyElementwise( std::negate{}, a ); } |
| 99 | |
| 100 | template <typename A, typename B> requires MR::ImGuiMath::detail::ValidOperands<A, B> |
| 101 | [[nodiscard]] constexpr auto operator+( A a, B b ) { return MR::ImGuiMath::applyElementwise( std::plus{}, a, b ); } |
nothing calls this directly
no test coverage detected