containsZero method

bool containsZero()

Returns true, if this interval contains zero (min <= 0 <= max).

Implementation

bool containsZero() => this.min <= 0 && 0 <= this.max;