genvalidity-property-0.0.0.0: src/Test/Validity/Property/Utils.hs
module Test.Validity.Property.Utils
( (<==>)
, (===>)
) where
import Data.Data
(===>) :: Bool -> Bool -> Bool
(===>) a b = not a || b
(<==>) :: Bool -> Bool -> Bool
(<==>) a b = a ===> b && b ===> a