bool containsZero()

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

Source

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