name: lensref version: 0.1.0.5 category: Control, Data synopsis: References which can be joined and on which lenses can be applied description: The lensref package provides and interface an two implementation for references which can be joined and on which lenses can be applied. . -The pure implementation is slow and has memory leaks but probably easier to follow. This is the reference implementation, so if the the other implementation differs this has the right behaviour. . -The fast implementation is intended for real usage. . Status: . -The interface is getting stable. You can expect more functionality and minor changes on current functionality. . -There are test cases for the first half of the interface. Both implementations fulfil the test cases. . -The pure implementation is ready. . -The fast implementation is much faster than the pure implementation, but it is far from being as fast as possible. Probably it also leaks memory. . To see what is possible to do with lens references, look at the test cases in "Data.LensRef.Test" . For more information visit the following links: . - . - . - . - stability: experimental license: BSD3 license-file: LICENSE author: Péter Diviánszky homepage: http://www.haskell.org/haskellwiki/LGtk bug-reports: https://github.com/divipp/lensref/issues maintainer: divipp@gmail.com cabal-version: >= 1.8 build-type: Simple extra-source-files: changelog source-repository head type: git location: https://github.com/divipp/lensref.git Flag Pure Description: Use the pure but slow implementation Default: False library hs-source-dirs: src build-depends: base < 5 , transformers < 0.5 , mtl < 2.3 , monad-control < 0.4 , operational < 0.3 , lens < 4.2 , containers < 0.6 exposed-modules: Data.LensRef Data.LensRef.Common Data.LensRef.TestEnv Data.LensRef.Test Data.LensRef.Pure Data.LensRef.Fast Data.LensRef.Default if flag(Pure) cpp-options: -D__PURE__ ghc-options: -Wall -fno-warn-incomplete-patterns -fno-warn-name-shadowing -fno-warn-missing-signatures -fno-warn-orphans -fno-warn-type-defaults