MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / operator==

Method operator==

include/Matrix.hpp:75–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73 }
74
75 constexpr bool operator==(const ::Matrix& other) {
76 return m0 == other.m0 && m1 == other.m1 && m2 == other.m2 && m3 == other.m3 && m4 == other.m4 &&
77 m5 == other.m5 && m6 == other.m6 && m7 == other.m7 && m8 == other.m8 && m9 == other.m9 &&
78 m10 == other.m10 && m11 == other.m11 && m12 == other.m12 && m13 == other.m13 && m14 == other.m14 &&
79 m15 == other.m15;
80 }
81
82 constexpr bool operator!=(const ::Matrix& other) { return !(*this == other); }
83

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected