Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ghc-lens-doc | Distribution: openSUSE:Factory:zSystems |
Version: 5.2.3 | Vendor: openSUSE |
Release: 5.11 | Build date: Tue Apr 30 18:00:18 2024 |
Group: Unspecified | Build host: reproducible |
Size: 28669757 | Source RPM: ghc-lens-5.2.3-5.11.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://hackage.haskell.org/package/lens | |
Summary: Haskell lens library documentation |
This package provides the Haskell lens library documentation.
BSD-2-Clause
* Tue Apr 30 2024 Peter Simons <[email protected]> - Update lens to version 5.2.3 revision 5. Upstream has revised the Cabal build instructions on Hackage. * Fri Apr 05 2024 Peter Simons <[email protected]> - Update lens to version 5.2.3 revision 4. Upstream has revised the Cabal build instructions on Hackage. * Sun Mar 17 2024 Peter Simons <[email protected]> - Update lens to version 5.2.3 revision 3. Upstream has revised the Cabal build instructions on Hackage. * Sat Sep 30 2023 Peter Simons <[email protected]> - Update lens to version 5.2.3 revision 2. Upstream has revised the Cabal build instructions on Hackage. * Sun Aug 27 2023 Peter Simons <[email protected]> - Update lens to version 5.2.3 revision 1. 5.2.3 [2023.08.24] - ----------------- * Allow building with GHC 9.8. * Add new `Prism`s to `Language.Haskell.TH.Lens` to reflect recent additions to `template-haskell`: * `_GetFieldE` and `_ProjectionE` `Prism`s for the `Exp` data type, whose corresponding data constructors were introduced in `template-haskell-2.18.*`. * `_TypedBracketE` and `_TypedSpliceE` `Prism`s for the `Exp` data type, whose corresponding data constructors were introduced in `template-haskell-2.21.*`. * `_BndrReq` and `_BndrInvis` `Prism`s for the `BndrVis` data type, which was added in `template-haskell-2.21.*`. * Add a `generateRecordSyntax` option to `Control.Lens.TH`, which controls whether to generate lenses using record update syntax or not. By default, this option is disabled. * Fix a bug in which the `declare*` Template Haskell functions would fail if a data type's field has a type that is defined in the same Template Haskell quotation. * Add `altOf`, which collects targets into any `Alternative`. * Mon Jul 10 2023 Peter Simons <[email protected]> - Update lens to version 5.2.2 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Thu Mar 30 2023 Peter Simons <[email protected]> - Updated spec file to conform with ghc-rpm-macros-2.5.2. * Sat Mar 18 2023 Peter Simons <[email protected]> - Update lens to version 5.2.2. 5.2.2 [2023.03.18] - ----------------- * Fix a bug in which calling `ix i` (where `i` is a negative number) on `Text` or `ByteString` would return the `Just` the first character instead of returning `Nothing`. * Wed Mar 15 2023 Peter Simons <[email protected]> - Update lens to version 5.2.1 revision 3. Upstream has revised the Cabal build instructions on Hackage. * Sun Mar 12 2023 Peter Simons <[email protected]> - Update lens to version 5.2.1 revision 2. Upstream has revised the Cabal build instructions on Hackage. * Tue Feb 28 2023 Peter Simons <[email protected]> - Update lens to version 5.2.1. 5.2.1 [2023.02.27] - ----------------- * Allow building with GHC 9.6. * Allow building with GHC backends where `HTYPE_SIG_ATOMIC_T` is not defined, such as the WASM backend. * Support building with `th-abstraction-0.5.*`. * Define `_TypeDataD` in `Language.Haskell.TH.Lens` when building with `template-haskell-2.20.0.0` (GHC 9.6) or later. * Thu Aug 11 2022 Peter Simons <[email protected]> - Update lens to version 5.2. 5.2 [2022.08.11] - --------------- * Allow building with GHC 9.4. * The type of `universeOf` has changed: ```diff - universeOf :: Getting [a] a a -> a -> [a] +universeOf :: Getting (Endo [a]) a a -> a -> [a] ``` In many cases, using `Endo [a]` over `[a]` improves performance. Most call sites to `universeOf` will not be affected by this change, although you may need to update your code if you define your own combinators in terms of `universeOf`. * Allow `makeWrapped` to accept the names of data constructors. This way, `makeWrapped` can be used with data family instances, much like other functions in `Control.Lens.TH`. * Define `_OpaqueP`, `_DefaultD`, `_LamCasesE`, `_PromotedInfixT`, and `_PromotedUInfixT` in `Language.Haskell.TH.Lens` when building with `template-haskell-2.19.0.0` (GHC 9.4) or later. * Tue Jun 21 2022 Peter Simons <[email protected]> - Update lens to version 5.1.1 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Tue May 17 2022 Peter Simons <[email protected]> - Update lens to version 5.1.1. 5.1.1 [2022.05.17] - ----------------- * Add `Data.HashSet.Lens.hashMap`, an `Iso` between a `HashSet a` and a `HashMap a ()`. * Allow building with `transformers-0.6.*` and `mtl-2.3.*`. Note that `lens` no longer defines `Zoom` instances for `ErrorT` or `ListT` when building with `mtl-2.3` or later. This is because `MonadState` is a superclass of `Zoom`, and the `MonadState` instances for `ErrorT` and `ListT` were removed in `mtl-2.3`. Be watchful of this if you build `lens` with `mtl-2.3` (or later) combined with an older version of `transformers` (pre-`0.6`) that defines `ErrorT` or `ListT`. * Sun Dec 26 2021 Peter Simons <[email protected]> - Update lens to version 5.1 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Tue Nov 16 2021 [email protected] - Update lens to version 5.1. 5.1 [2021.11.15] - --------------- * Allow building with GHC 9.2. * Drop support for GHC 7.10 and older. * The type of `_ConP` in `Language.Haskell.TH.Lens` is now `Prism' Pat (Name, [Type], [Pat])` instead of `Prism' Pat (Name, [Pat])` when building with `template-haskell-2.18` or later. * Define `_CharTyLit` in `Language.Haskell.TH.Lens` when building with `template-haskell-2.18` or later. * Add `Prefixed` and `Suffixed` classes to `Control.Lens.Prism`, which provide `prefixed` and `suffixed` prisms for prefixes and suffixes of sequence types. These classes generalize the `prefixed` and `suffixed` functions in `Data.List.Lens`, which were previously top-level functions. In addition to providing `Prefixed` and `Suffixed` instances for lists, instances for `Text` and `ByteString` types are also provided. At present, `Prefixed` and `Suffixed` are re-exported from `Data.List.Lens` for backwards compatibility. This may change in a future version of `lens`, however. * Add a `traversal` function to `Control.Lens.Traversal`. This function, aside from acting as a `Traversal` counterpart to the `lens` and `prism` functions, provides documentation on how to define `Traversal`s. * Add a `matching'` function to `Control.Lens.Prism`. `matching'` is like `matching`, but with a slightly more general type signature that allows it to work with combinations of `Lens`es, `Prism`s, and `Traversal`s. * Thu Sep 02 2021 [email protected] - Update lens to version 5.0.1 revision 2. Upstream has revised the Cabal build instructions on Hackage. * Mon May 17 2021 [email protected] - Update lens to version 5.0.1 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Wed Feb 24 2021 [email protected] - Update lens to version 5.0.1. 5.0.1 [2021.02.24] - ----------------- * Fix a bug in which `makeLenses` could produce ill kinded optics for poly-kinded datatypes in certain situations. * Fri Feb 19 2021 [email protected] - Update lens to version 5. 5 [2021.02.17] - ------------- * Support building with GHC 9.0. * Remove the `Swapped` type class in favor of `Swap` from the `assoc` package. * Remove the `Strict` type class in favor of `Strict` from the `strict` package. The `swapped`, `strict` and `lazy` isomorphisms are now defined using "new" type classes. Users which define own instances of old type classes are advised to define instances of the new ones. ```haskell import qualified Data.Bifunctor.Swap as Swap import qualified Control.Lens as Lens instance Swap.Swap MyType where swap = ... [#]if !MIN_VERSION_lens(4,20,0) instance Lens.Swapped MyType where swapped = iso Swap.swap Swap.swap [#]endif ``` * The `FunctorWithIndex`, `FoldableWithIndex` and `TraversableWithIndex` type classes have been migrated to a new package, [`indexed-traversable`](https://hackage.haskell.org/package/indexed-traversable). The `imapped`, `ifolded` and `itraversed` methods are now top-level functions. If you are not defining these methods in your instances, you don't need to change your definitions. Beware: the `optics-core` package (versions <0.4) defines similar classes, and will also migrate to use `indexed-traversable` classes. Therefore, you might get duplicate instance errors if your package defines both. If you define your own `FunctorWithIndex` etc. instances, we recommend that you depend directly on the `indexed-traversable` package. If you want to continue support `lens-4` users, you may write ```haskell - - from indexed-traversable import Data.Functor.WithIndex - - from lens import qualified Control.Lens as L - - your (indexed) container data MySeq a = ... - - indexed-traversable instance instance FunctorWithIndex Int MySeq where imap = ... instance FoldableWithIndex Int MySeq where ifoldMap = ... instance TraversableWithIndex Int MySeq where itraverse = ... - - lens <5 instance, note the ! [#]if !MIN_VERSION_lens(5,0,0) instance L.FunctorWithIndex Int MySeq where imap = imap instance L.FoldableWithIndex Int MySeq where ifoldMap = ifoldMap instance L.TraversableWithIndex Int MySeq where itraverse = itraverse [#]endif ``` In other words, always provide `indexed-traversable` instances. If your package depends on `lens` and allows `lens-4`, you should additionally provide instances for `lens-4` type classes that can reuse the `indexed-traversable` instances. * Make the functions in `Control.Lens.TH` work more robustly with poly-kinded data types. This can cause a breaking change under certain situations: * TH-generated optics for poly-kinded data types are now much more likely to mention kind variables in their definitions, which will require enabling the `PolyKinds` extension at use sites in order to typecheck. * Because TH-generated optics now quantify more kind variables than they did previously, this can affect the order of visible type applications. * Generalize the types of `generic` and `generic1` to allow type-changing updates. If you wish to use the old, more restricted types of these functions, use `simple . generic` or `simple . generic1` instead. * Add `Control.Lens.Profunctor` with conversion functions to and from profunctor optic representation. * Add `Control.Lens.Review.reviewing`, which is like `review` but with a more polymorphic type. * Mark `Control.Lens.Equality` as Trustworthy. * The build-type has been changed from `Custom` to `Simple`. To achieve this, the `doctests` test suite has been removed in favor of using [`cabal-docspec`](https://github.com/phadej/cabal-extras/tree/master/cabal-docspec) to run the doctests. * Use `alterF` in `At (HashMap k)` instance implementation. * Use `alterF` in `At` and `Contains` instances for `Set`, `IntSet`, and `HashSet`. * Avoid re-inserting keys already present in `ix` for `Set`, `IntSet`, and `HashSet`. For `Set` and `HashSet`, this changes the semantics slightly; if the user-supplied key is `==` to one already present in the set, then the latter will not be replaced in the result. * Consume `()` values lazily in `Control.Lens.At`. * Mon Feb 08 2021 [email protected] - Update lens to version 4.19.2 revision 5. Upstream has revised the Cabal build instructions on Hackage. * Sun Jan 31 2021 [email protected] - Update lens to version 4.19.2 revision 4. Upstream has revised the Cabal build instructions on Hackage. * Wed Jan 20 2021 [email protected] - Update lens to version 4.19.2 revision 3. Upstream has revised the Cabal build instructions on Hackage.
/usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3 /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Exception-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-At.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Combinators.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Cons.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Each.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Empty.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Equality.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Extras.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Fold.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Getter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Indexed.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Bazaar.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-ByteString.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-CTypes.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Context.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Deque.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Doctest.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Exception.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-FieldTH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Fold.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Getter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Indexed.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Instances.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Iso.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Level.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-List.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Magma.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Prism.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-PrismTH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Profunctor.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Review.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Setter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-TH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal-Zoom.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Internal.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Iso.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Level.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Operators.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Plated.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Prism.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Profunctor.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Reified.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Review.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Setter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-TH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Traversal.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Tuple.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Type.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Unsound.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Wrapped.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens-Zoom.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Monad-Error-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Parallel-Strategies-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Control-Seq-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Array-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Bits-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-ByteString-Lazy-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-ByteString-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-ByteString-Strict-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Complex-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Data-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Dynamic-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-HashSet-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-IntSet-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-List-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Map-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Sequence-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Set-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Text-Lazy-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Text-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Text-Strict-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Tree-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Typeable-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Vector-Generic-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Data-Vector-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/GHC-Generics-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Language-Haskell-TH-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Numeric-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/Numeric-Natural-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/System-Exit-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/System-FilePath-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/System-IO-Error-Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-124.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-35.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-37.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-38.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-42.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-43.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-45.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-46.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-47.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-58.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-60.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-62.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-63.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-94.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-95.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-A.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-All.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-B.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-C.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-D.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-E.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-F.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-G.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-H.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-I.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-L.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-M.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-N.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-O.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-P.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-Q.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-R.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-S.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-T.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-U.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-V.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-W.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-X.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index-Z.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/doc-index.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/haddock-bundle.min.js /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/images /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/images/Hierarchy.png /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/images/overview.png /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/index.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/lens.haddock /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/lens.txt /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/linuwial.css /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/meta.json /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/quick-jump.css /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Exception.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.At.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Combinators.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Cons.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Each.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Empty.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Equality.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Extras.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Fold.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Getter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Indexed.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Bazaar.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.ByteString.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.CTypes.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Context.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Deque.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Doctest.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Exception.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.FieldTH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Fold.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Getter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Indexed.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Instances.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Iso.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Level.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.List.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Magma.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Prelude.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Prism.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.PrismTH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Profunctor.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Review.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Setter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.TH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.Zoom.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Internal.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Iso.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Level.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Operators.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Plated.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Prism.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Profunctor.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Reified.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Review.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Setter.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.TH.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Traversal.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Tuple.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Type.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Unsound.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Wrapped.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.Zoom.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Monad.Error.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Parallel.Strategies.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Control.Seq.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Array.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Bits.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.ByteString.Lazy.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.ByteString.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.ByteString.Strict.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Complex.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Data.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Dynamic.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.HashSet.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.IntSet.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.List.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Map.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Sequence.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Set.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Text.Lazy.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Text.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Text.Strict.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Tree.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Typeable.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Vector.Generic.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Data.Vector.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/GHC.Generics.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Language.Haskell.TH.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Numeric.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/Numeric.Natural.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/System.Exit.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/System.FilePath.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/System.IO.Error.Lens.html /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/highlight.js /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/src/style.css /usr/share/doc/packages/ghc-9.8.3/html/libraries/lens-5.2.3/synopsis.png /usr/share/licenses/ghc-lens-doc /usr/share/licenses/ghc-lens-doc/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Dec 3 23:45:09 2024