ChasingBottoms-1.3.1.12: For testing partial and infinite values.
Copyright(c) Nils Anders Danielsson 2004-2022
LicenseSee the file LICENCE.
Maintainerhttp://www.cse.chalmers.se/~nad/
Stabilityexperimental
Portabilitynon-portable (GHC-specific)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Test.ChasingBottoms.Nat

Description

A simple implementation of natural numbers on top of Integers. Note that since Integers are used there is no infinite natural number; in other words, succ is strict.

Synopsis

Documentation

data Nat Source #

Natural numbers.

No Data instance is provided, because the implementation should be abstract.

Instances

Instances details
Arbitrary Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Methods

arbitrary :: Gen Nat

shrink :: Nat -> [Nat]

CoArbitrary Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Methods

coarbitrary :: Nat -> Gen b -> Gen b

Enum Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Num Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Integral Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Methods

quot :: Nat -> Nat -> Nat Source #

rem :: Nat -> Nat -> Nat Source #

div :: Nat -> Nat -> Nat Source #

mod :: Nat -> Nat -> Nat Source #

quotRem :: Nat -> Nat -> (Nat, Nat) Source #

divMod :: Nat -> Nat -> (Nat, Nat) Source #

toInteger :: Nat -> Integer Source #

Real Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Show Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Eq Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Methods

(==) :: Nat -> Nat -> Bool Source #

(/=) :: Nat -> Nat -> Bool Source #

Ord Nat Source # 
Instance details

Defined in Test.ChasingBottoms.Nat

Methods

compare :: Nat -> Nat -> Ordering Source #

(<) :: Nat -> Nat -> Bool Source #

(<=) :: Nat -> Nat -> Bool Source #

(>) :: Nat -> Nat -> Bool Source #

(>=) :: Nat -> Nat -> Bool Source #

max :: Nat -> Nat -> Nat Source #

min :: Nat -> Nat -> Nat Source #

isSucc :: Nat -> Bool Source #

isSucc 0 == False, for other total natural numbers it is True.

fromSucc :: Nat -> Maybe Nat Source #

fromSucc 0 == Nothing, fromSucc (n+1) == Just n for a total natural number n.

natrec :: a -> (Nat -> a -> a) -> Nat -> a Source #

natrec performs primitive recursion on natural numbers.

foldN :: a -> (a -> a) -> Nat -> a Source #

foldN is a fold on natural numbers:

 foldN g h = natrec g (curry $ h . snd)