Popularity
1.0
Declining
Activity
3.5
Stable
0
2
0
Monthly Downloads: 1
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.
-
compendium-client
DISCONTINUED. Mu (μ) is a purely functional framework for building micro services. -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of n-tuple or a related project?
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