@@ -33,6 +33,19 @@ protected:
unsigned int pn[WIDTH];
public:
bool isZero() const
{
for (int i = 0; i < WIDTH; i++)
if (pn[i] != 0)
return false;
return true;
}
bool isNonZero() const
return !isZero();
bool operator!() const
The note is not visible to the blocked user.