lazyboy-0.2.2.0: An EDSL for programming the Game Boy.

Copyright(c) Rose 2019
LicenseBSD3
Maintainerrose@lain.org.uk
Stabilityexperimental
PortabilityPOSIX
Safe HaskellSafe
LanguageHaskell2010

Lazyboy.Prelude

Description

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

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.

(&&) :: Lazyboy Condition -> Lazyboy Condition -> Lazyboy Condition Source #

Overload the && (AND) operator for use in Lazyboy.

(||) :: Lazyboy Condition -> Lazyboy Condition -> Lazyboy Condition Source #

Overload the || (OR) operator for use in Lazyboy.