Module

Data.Boolean

Package
purescript-prelude
Repository
purescript/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