ty-0.0.2: Typed type representations and equality proofs

Stabilityexperimental
Maintainerconal@conal.net
Safe HaskellSafe-Infered

Data.Ty

Description

Typed typerefs

Synopsis

Documentation

data Ty a Source

Phantom type wrapper around a TypeRep

Instances

IsTy Ty 
Show (Ty a) 

ty :: Typeable a => Ty aSource

tyOf :: Typeable a => a -> Ty aSource

The Ty of a value

class Typeable a

The class Typeable allows a concrete representation of a type to be calculated.

module Data.IsTy