data-treify-0.3.1: Reify a recursive data structure into an explicit graph.

Stabilityexperimental
Maintainerconal@conal.net

CustomTy

Description

Custom Ty & Typable

Synopsis

Documentation

data Ty a whereSource

Typed type representation. Alternative to Data.Ty in the ty package

Constructors

Bool :: Ty Bool 
Integer :: Ty Integer 
Float :: Ty Float 
:*: :: Ty a -> Ty b -> Ty (a, b) 
:->: :: Ty a -> Ty b -> Ty (a -> b) 

Instances

class Typeable a whereSource

Replacement for Typeable and the ty package's ty.

Methods

ty :: Ty aSource

Instances

module Data.IsTy