Copyright | (c) Matthew Naylor 2019 2021 (c) Alexandre Joannou 2019 |
---|---|
License | MIT |
Maintainer | mattfn@gmail.com |
Stability | experimental |
Safe Haskell | Safe-Inferred |
Language | GHC2021 |
Blarney.Core.IfThenElse
Description
Synopsis
- class IfThenElse b a where
- ifThenElse :: b -> a -> a -> a
- priorityIf :: IfThenElse cond ret => [(cond, ret)] -> ret -> ret
- class When cond act where
- when :: cond -> act () -> act ()
Documentation
class IfThenElse b a where Source #
Overloaded if-then-else
Methods
ifThenElse :: b -> a -> a -> a Source #
Instances
IfThenElse Bool a # | |
Defined in Blarney.Core.IfThenElse Methods ifThenElse :: Bool -> a -> a -> a Source # | |
Bits a => IfThenElse (Bit 1) a # | Overloaded if-then-else |
Defined in Blarney.Core.Common Methods ifThenElse :: Bit 1 -> a -> a -> a Source # | |
Bits a => IfThenElse (Bit 1) (Action a) # | Overloaded if-then-else |
Defined in Blarney.Core.Module | |
IfThenElse (Bit 1) (Stmt ()) # | |
Defined in Blarney.Stmt |
priorityIf :: IfThenElse cond ret => [(cond, ret)] -> ret -> ret Source #
If-then-else chain, with fallthrough case