base-4.7.0.0: Basic libraries

Copyright(c) The University of Glasgow 2001
License(c) The University of Glasgow 2001
Maintainerlibraries@haskell.org
Stabilityexperimental
Portabilityportable
Safe HaskellTrustworthy

Data.Bool

Contents

Description

The Bool type and related functions.

Synopsis

Booleans

Operations

(&&) :: Bool -> Bool -> BoolSource

Boolean "and"

(||) :: Bool -> Bool -> BoolSource

Boolean "or"

not :: Bool -> BoolSource

Boolean "not"

otherwise :: BoolSource

otherwise is defined as the value True. It helps to make guards more readable. eg.

  f x | x < 0     = ...
      | otherwise = ...