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

Method operator==

include/Vector4.hpp:45–47  ·  view source on GitHub ↗

* An exact value by value equality comparison. * Due to floating point inaccuracies consider using Equals instead. */

Source from the content-addressed store, hash-verified

43 * Due to floating point inaccuracies consider using Equals instead.
44 */
45 constexpr bool operator==(const ::Vector4& other) const {
46 return x == other.x && y == other.y && z == other.z && w == other.w;
47 }
48
49 /*
50 * An exact value by value inequality comparison.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected