@hackage n-tuple0.0.1.1
Homogeneous tuples of arbitrary length.
Categories
License
BSD-3-Clause
Maintainer
athan.clark@gmail.com
Links
Versions
Installation
Dependencies (3)
- base >=4.7 && <5
- vector
- singletons Show all…
Dependents (2)
@hackage/acme-everything, @hackage/attoparsec-uri
n-tuple
{-# LANGUAGE DataKinds -#}
import Data.NTuple
foo :: NTuple 3 String
foo
= incl _3 "three"
. incl _2 "two"
. incl _1 "one"
$ empty
one :: String
one = proj _1 foo
two :: String
two = proj _2 foo