1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 06:11:49 +03:00

📝 Boolean.

This commit is contained in:
Rob Rix 2017-12-21 09:42:32 -05:00
parent cae0325084
commit ca19daf137

View File

@ -45,6 +45,7 @@ instance Eq1 Unit where liftEq = genericLiftEq
instance Ord1 Unit where liftCompare = genericLiftCompare
instance Show1 Unit where liftShowsPrec = genericLiftShowsPrec
-- | Boolean values.
newtype Boolean term = Boolean Prelude.Bool
deriving (Eq, Generic1, Ord, Show)