vinyl-vectors-0.2.0: Vectors for vinyl vectors

CopyrightAndrew Martin
LicenseBSD-style (see the file LICENSE)
MaintainerAndrew Martin <andrew.thaddeus@gmail.com>
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Data.Vector.Vinyl.TypeLevel

Description

Try to merge this into vinyl at some point.

Synopsis

Documentation

type family ListAll ts c :: Constraint Source

A constraint on each element of a type-level list.

Equations

ListAll `[]` c = () 
ListAll (t : ts) c = (c t, ListAll ts c)