Module

Data.Boolean

Package
prelude
Repository
purerl/purescript-prelude

#otherwise Source

otherwise :: Boolean

An alias for true, which can be useful in guard clauses:

max x y | x >= y    = x
        | otherwise = y