| 380 | // Greater/Less-Than Operator overloads - mathematically useless, but handy for "sorted" container storage |
| 381 | template<class TL, class TR> |
| 382 | inline constexpr bool operator < (const v_3d<TL>& lhs, const v_3d<TR>& rhs) |
| 383 | { |
| 384 | return (lhs.z < rhs.z) || (lhs.z == rhs.z && lhs.y < rhs.y) || (lhs.z == rhs.z && lhs.y == rhs.y && lhs.x < rhs.x); |
| 385 | } |
| 386 | |
| 387 | template<class TL, class TR> |
| 388 | inline constexpr bool operator > (const v_3d<TL>& lhs, const v_3d<TR>& rhs) |
nothing calls this directly
no outgoing calls
no test coverage detected