| 83 | /** @} */ |
| 84 | |
| 85 | friend bool operator <(const vec2<T>& lhs, const vec2<T>& rhs) |
| 86 | { |
| 87 | if(lhs.x != rhs.x) |
| 88 | return lhs.x < rhs.x; |
| 89 | return lhs.y < rhs.y; |
| 90 | } |
| 91 | |
| 92 | bool operator ==(const vec2<T>& rhs) const |
| 93 | { |
nothing calls this directly
no outgoing calls
no test coverage detected