isZero function

bool isZero(
  1. int x
)

Implementation

bool isZero(int x) => isNull(x) || x == 0;