let
disjoint d1 d2 =
match
d1, d2
with
|
Int
,
Nonint
->
true
|
Nonint
,
Int
->
true
|
_
->
false