MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / operator <

Method operator <

jni/venus/vec2.h:85–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected