isZero method Null safety

bool isZero(
  1. Value v
)

Determine if this value is 0 or, if applicable, -0. Not for use with an index register value, since it can have a different representation for -0 -- cf. Memory.isZeroI()

Implementation

bool isZero(Value v) => signMode.isZero(this, v);