exclamation mark and brackets
in
Programming Questions
•
2 years ago
what does exlamation mark mean in this context?
- boolean rectRectIntersect(float left, float top, float right, float bottom,
- float otherLeft, float otherTop, float otherRight, float otherBottom) {
- return !(left > otherRight || right < otherLeft || top > otherBottom || bottom < otherTop);
- }
1