| 490 | |
| 491 | template<class TL, class TR> |
| 492 | inline constexpr bool operator > (const v_2d<TL>& lhs, const v_2d<TR>& rhs) |
| 493 | { |
| 494 | return (lhs.y > rhs.y) || (lhs.y == rhs.y && lhs.x > rhs.x); |
| 495 | } |
| 496 | |
| 497 | // Allow olc::v_2d to play nicely with std::cout |
| 498 | template<class T> |
nothing calls this directly
no outgoing calls
no test coverage detected