Copyright | (c) Rose 2019 |
---|---|
License | BSD3 |
Maintainer | rose@lain.org.uk |
Stability | experimental |
Portability | POSIX |
Safe Haskell | Safe |
Language | Haskell2010 |
This module defines aliases for Lazyboy functions which share names with entities in Haskell's Prelude library. These are presented for the user to optionally import.
Synopsis
- (==) :: Comparable a b => a -> b -> Lazyboy Condition
- (/=) :: Comparable a b => a -> b -> Lazyboy Condition
- (>) :: Comparable a b => a -> b -> Lazyboy Condition
- (<) :: Comparable a b => a -> b -> Lazyboy Condition
- (&&) :: Lazyboy Condition -> Lazyboy Condition -> Lazyboy Condition
- (||) :: Lazyboy Condition -> Lazyboy Condition -> Lazyboy Condition
Documentation
(==) :: Comparable a b => a -> b -> Lazyboy Condition Source #
Overload the == (equality) operator for use in Lazyboy.
(/=) :: Comparable a b => a -> b -> Lazyboy Condition Source #
Overload the /= (inequality) operator for use in Lazyboy.
(>) :: Comparable a b => a -> b -> Lazyboy Condition Source #
Overload the > (greater than) operator for use in Lazyboy.
(<) :: Comparable a b => a -> b -> Lazyboy Condition Source #
Overload the < (lesser than) operator for use in Lazyboy.