isZero property
bool
get
isZero
@return true iff this polynomial is the monomial "0"
Implementation
bool get isZero => _coefficients[0] == 0;
@return true iff this polynomial is the monomial "0"
bool get isZero => _coefficients[0] == 0;