Popularity
1.6
Declining
Activity
3.5
-
0
3
0

Monthly Downloads: 19
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Data    

n-tuple alternatives and similar packages

Based on the "Data" category.
Alternatively, view n-tuple alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of n-tuple or a related project?

Add another 'Data' Package

README

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