exists-0.2: Existential datatypes holding evidence of constraints

Safe HaskellSafe-Infered

Data.Anything

Description

Useless existential datatypes holding evidence of no constraint.

Synopsis

Documentation

data Anything whereSource

A datatype containing anything. You can't do anything with it.

Constructors

Anything :: a -> Anything 

data Anything1 a whereSource

A datatype containing any * -> * kinded type constructor applied to a. You can't do anything with it.

Constructors

Anything1 :: f a -> Anything1 a