* An exact value by value equality comparison. * Due to floating point inaccuracies consider using Equals instead. */
| 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. |
nothing calls this directly
no outgoing calls
no test coverage detected