Skip to content

Instantly share code, notes, and snippets.

View sebastiaanvisser's full-sized avatar

Sebastiaan Visser sebastiaanvisser

View GitHub Profile
@sebastiaanvisser
sebastiaanvisser / ConstraintCategory.hs
Last active December 22, 2015 11:18
Introducing type variables in class constraint, using ConstraintKinds.
-- * Introducing type variables in class constraint, using ConstraintKinds.
-- * (Using ghc-7.6.3)
{-# LANGUAGE ConstraintKinds, GADTs, TypeFamilies #-}
module ConstraintCategory where
import GHC.Exts (Constraint)
-- Version of Category that can put constraints on the i/o of the category.