isSubsetOf method
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);
}
Checks if this value is less than or equal to another (⊑).
@override
bool isSubsetOf(CombinedDomain other) {
return interval.isSubsetOf(other.interval) &&
nullability.isSubsetOf(other.nullability);
}