@hackage n-tuple0.0.3
Homogeneous tuples of arbitrary length.
Categories
License
BSD-3-Clause
Maintainer
athan.clark@gmail.com
Links
Versions
Installation
Dependencies (3)
- base >=4.11 && <5
- vector
- singletons-base >=3 Show all…
Dependents (2)
@hackage/acme-everything, @hackage/attoparsec-uri
n-tuple
This is a silly implementation of "homogeneous n-length tuples" -- basically
an array. Internally, it builds a Vector
, and projections just pull that index.
{-# 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