singleton-bool-0.1.0.0: Type level booleans
Data.Singletons.Bool
Contents
Synopsis
data SBool b where Source #
Constructors
class SBoolI b where Source #
Minimal complete definition
sbool
Methods
sbool :: SBool b Source #
Instances
sbool :: SBool False Source #
sbool :: SBool True Source #
These are only defined with base >= 4.7
base >= 4.7
sboolAnd :: SBool a -> SBool b -> SBool (a && b) Source #
sboolOr :: SBool a -> SBool b -> SBool (a || b) Source #
sboolNot :: SBool a -> SBool (Not a) Source #