notZero function

bool notZero(
  1. int x
)

Implementation

bool notZero(int x) => notNull(x) && x != 0;