We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A simple check to see if a value is equal to zero. This is basically a cleaner and more expressive way of writing Value == 0.
Value == 0
This can be useful for when you want to check if a pointer is null.
Arguments:
Value
Example:
Assert(Zero(0)); // Passes Assert(Zero(1)); // Fails
Macros:
Assert
EQ
Not
LT
LE
GT
GE
Zero