| 53 | constexpr bool operator!=(const ::Vector4& other) const { return !(*this == other); } |
| 54 | |
| 55 | RLCPP_NODISCARD constexpr ::Rectangle ToRectangle() const { return {x, y, z, w}; } |
| 56 | |
| 57 | constexpr operator ::Rectangle() const { return {x, y, z, w}; } |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected