-- Initial disjoint-lenses.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: tuple-lenses version: 0.1.0.2 synopsis: Stock FieldN combos and generators description: This package provides some stock lenses for swizzling tuple elements. For instance: . >> (1,2,3)^._13 > (1, 3) . The package provide all lenses that are in increasing order, for FieldN classes 1-9. If you want to swap the order or permute the elements, you need to make your own. . Custom combos are provided by a Template Haskell function. . >> ('a','b','c','d') ^. $(tl [4,1,2,3]) > ('d','a','b','c') homepage: http://github.com/jfischoff/tuple-lenses license: BSD3 license-file: LICENSE author: Jonathan Fischoff maintainer: jonathangfischoff@gmail.com -- copyright: category: Control build-type: Simple cabal-version: >=1.12 library exposed-modules: Data.Tuple.Lens other-modules: Data.Tuple.Lens.Generated, Data.Tuple.Lens.TH build-depends: base ==4.6.*, template-haskell ==2.8.*, lens ==3.9.* hs-source-dirs: src default-language: Haskell2010