isSubsetOf method

  1. @override
bool isSubsetOf(
  1. CombinedDomain other
)
override

Checks if this value is less than or equal to another (⊑).

Implementation

@override
bool isSubsetOf(CombinedDomain other) {
  return interval.isSubsetOf(other.interval) &&
      nullability.isSubsetOf(other.nullability);
}