name: tuple-append version: 0.3.0.0 synopsis: A package to append, sequence and fold items and tuples into new tuples. description: A library that makes it more convenient to append a tuple with /m/ items and a tuple with /n/ items into a tuple with /m+n/ items, together with functions to add an element at the left, or the right side of a tuple and sequence or fold a tuple. homepage: https://github.com/hapytex/tuple-append#readme license: BSD3 license-file: LICENSE author: Willem Van Onsem maintainer: hapytexteu+gh@gmail.com copyright: 2022 Willem Van Onsem category: utils build-type: Simple extra-source-files: README.md , CHANGELOG.md cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Data.Tuple.Append , Data.Tuple.Append.Class , Data.Tuple.Append.TemplateHaskell other-modules: Data.Tuple.Append.Example build-depends: base >= 4.7 && < 5 , ghc-prim >=0.3.10 , template-haskell >= 2.5.0.0 default-language: Haskell2010 test-suite append-tuple type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: test other-modules: Data.Tuple.AppendSpec build-depends: base , tuple-append , ghc-prim >=0.3.10 , hspec ==2.* default-language: Haskell2010 source-repository head type: git location: https://github.com/hapytex/tuple-append