blarney-0.1.0.0
Copyright(c) Matthew Naylor 2019 2021
(c) Alexandre Joannou 2019
LicenseMIT
Maintainermattfn@gmail.com
Stabilityexperimental
Safe HaskellSafe-Inferred
LanguageGHC2021

Blarney.Core.IfThenElse

Description

 
Synopsis

Documentation

class IfThenElse b a where Source #

Overloaded if-then-else

Methods

ifThenElse :: b -> a -> a -> a Source #

Instances

Instances details
IfThenElse Bool a # 
Instance details

Defined in Blarney.Core.IfThenElse

Methods

ifThenElse :: Bool -> a -> a -> a Source #

Bits a => IfThenElse (Bit 1) a #

Overloaded if-then-else

Instance details

Defined in Blarney.Core.Common

Methods

ifThenElse :: Bit 1 -> a -> a -> a Source #

Bits a => IfThenElse (Bit 1) (Action a) #

Overloaded if-then-else

Instance details

Defined in Blarney.Core.Module

Methods

ifThenElse :: Bit 1 -> Action a -> Action a -> Action a Source #

IfThenElse (Bit 1) (Stmt ()) # 
Instance details

Defined in Blarney.Stmt

Methods

ifThenElse :: Bit 1 -> Stmt () -> Stmt () -> Stmt () Source #

priorityIf :: IfThenElse cond ret => [(cond, ret)] -> ret -> ret Source #

If-then-else chain, with fallthrough case

class When cond act where Source #

Overloaded conditionals without an else part

Methods

when :: cond -> act () -> act () Source #

Instances

Instances details
Applicative app => When Bool app # 
Instance details

Defined in Blarney.Core.IfThenElse

Methods

when :: Bool -> app () -> app () Source #

When (Bit 1) Action #

Overloaded conditional for actions

Instance details

Defined in Blarney.Core.Module

Methods

when :: Bit 1 -> Action () -> Action () Source #

When (Bit 1) Stmt # 
Instance details

Defined in Blarney.Stmt

Methods

when :: Bit 1 -> Stmt () -> Stmt () Source #