Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-lens-devel-5.1-bp154.1.15 RPM for ppc64le

From OpenSuSE Leap 15.4 for ppc64le

Name: ghc-lens-devel Distribution: SUSE Linux Enterprise 15 SP4
Version: 5.1 Vendor: openSUSE
Release: bp154.1.15 Build date: Mon May 9 14:57:39 2022
Group: Unspecified Build host: obs-power8-02
Size: 88948943 Source RPM: ghc-lens-5.1-bp154.1.15.src.rpm
Packager: https://bugs.opensuse.org
Url: https://hackage.haskell.org/package/lens
Summary: Haskell lens library development files
This package provides the Haskell lens library development files.

Provides

Requires

License

BSD-2-Clause

Changelog

* Sun Dec 26 2021 Peter Simons <psimons@suse.com>
  - Update lens to version 5.1 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue Nov 16 2021 psimons@suse.com
  - 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 psimons@suse.com
  - Update lens to version 5.0.1 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Mon May 17 2021 psimons@suse.com
  - Update lens to version 5.0.1 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Wed Feb 24 2021 psimons@suse.com
  - 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 psimons@suse.com
  - 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 psimons@suse.com
  - Update lens to version 4.19.2 revision 5.
    Upstream has revised the Cabal build instructions on Hackage.
* Sun Jan 31 2021 psimons@suse.com
  - Update lens to version 4.19.2 revision 4.
    Upstream has revised the Cabal build instructions on Hackage.
* Wed Jan 20 2021 psimons@suse.com
  - Update lens to version 4.19.2 revision 3.
    Upstream has revised the Cabal build instructions on Hackage.
* Thu Dec 17 2020 Ondřej Súkup <mimi.vx@gmail.com>
  - disable %{ix86} build
* Tue Oct 06 2020 psimons@suse.com
  - Update lens to version 4.19.2 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Mon Aug 31 2020 psimons@suse.com
  - Update lens to version 4.19.2 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue Aug 18 2020 Peter Simons <psimons@suse.com>
  - Replace %setup -q with the more modern %autosetup macro.
* Tue Jun 16 2020 Peter Simons <psimons@suse.com>
  - Re-generate file with latest version of spec-cleaner.
* Wed May 06 2020 psimons@suse.com
  - Update lens to version 4.19.2.
    4.19.2 [2020.04.15]
    - ------------------
    * Remove the test suite's dependency on `test-framework-th`.
* Thu Feb 27 2020 psimons@suse.com
  - Update lens to version 4.19.1.
    4.19.1 [2020.02.13]
    - ------------------
    * Fix a bug introduced in 4.19 where using `_TupE` to `preview` a value would
      always fail.
* Fri Feb 07 2020 psimons@suse.com
  - Update lens to version 4.19.
    4.19 [2020.02.03]
    - ----------------
    * Support building with GHC 8.10.
    * The types of `_TupE` and `_UnboxedTupE` are now `Prism' Exp [Maybe Exp]`
      when built against `template-haskell-2.16` or later to reflect the new
      types of `TupE` and `UnboxedTupE`.
    * Add `_ForallVisT` and `_BytesPrimL` prisms when building against
      `template-haskell-2.16` or later.
    * Make `<>~` and `<>=` and their `<op` and `<<op` state variants require only
      `Semigroup`, not `Monoid`.
    * Add `{Functor,Foldable,Traversable}WithIndex` instances for
      `Control.Applicative.Const` and `Data.Functor.Constant.Constant`.
* Fri Nov 08 2019 Peter Simons <psimons@suse.com>
  - Drop obsolete group attributes.
* Sat Sep 14 2019 psimons@suse.com
  - Update lens to version 4.18.1.
    4.18.1 [2019.09.13]
    - ------------------
    * Remove the use of `cpp-options: -traditional`. This should be unnecessary
      on all versions of GHC that `lens` supports, as modern GHCs already use
      `-traditional` internally during preprocessing. More critically, the use
      of `cpp-options: -traditional` breaks profiling builds on GHC 8.8
      (see https://gitlab.haskell.org/ghc/ghc/issues/17185).
* Sat Sep 07 2019 psimons@suse.com
  - Update lens to version 4.18.
    Upstream has edited the change log file since the last release in
    a non-trivial way, i.e. they did more than just add a new entry
    at the top. You can review the file at:
    http://hackage.haskell.org/package/lens-4.18/src/CHANGELOG.markdown
* Thu Aug 08 2019 Peter Simons <psimons@suse.com>
  - Update Cabal file to allow building with call-stack 0.2.x.
* Tue Jun 11 2019 Peter Simons <psimons@suse.com>
  - Update Cabal file for more accurate build dependencies.
* Tue Apr 30 2019 psimons@suse.com
  - Update lens to version 4.17.1.
    4.17.1 [2019.04.26]
    - ------------------
    * Support `th-abstraction-0.3.0.0` or later.
    * Only incur `semigroups` and `void` dependencies on old GHCs.
    * Add `holes1Of`.
    * Add `locally` (https://github.com/ekmett/lens/pull/829).
    * Add `ilocally` (https://github.com/ekmett/lens/pull/836).
    * Add a third `Prism` law.
    * Add `gplate1`.
    * Add `Wrapped`/`Rewrapped` instances for `Data.Monoid.Ap`.
* Thu Aug 02 2018 psimons@suse.com
  - Add lens at version 4.17.

Files

/usr/lib64/ghc-8.10.7/lens-5.1/Control
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Exception
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Exception/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Exception/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Exception/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/At.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/At.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/At.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Combinators.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Combinators.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Combinators.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Cons.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Cons.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Cons.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Each.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Each.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Each.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Empty.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Empty.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Empty.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Equality.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Equality.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Equality.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Extras.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Extras.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Extras.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Fold.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Fold.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Fold.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Getter.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Getter.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Getter.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Indexed.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Indexed.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Indexed.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Bazaar.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Bazaar.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Bazaar.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/ByteString.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/ByteString.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/ByteString.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/CTypes.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/CTypes.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/CTypes.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Context.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Context.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Context.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Deque.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Deque.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Deque.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Exception.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Exception.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Exception.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/FieldTH.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/FieldTH.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/FieldTH.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Fold.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Fold.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Fold.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Getter.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Getter.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Getter.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Indexed.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Indexed.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Indexed.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Instances.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Instances.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Instances.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Iso.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Iso.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Iso.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Level.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Level.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Level.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/List.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/List.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/List.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Magma.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Magma.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Magma.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Prelude.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Prelude.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Prelude.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Prism.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Prism.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Prism.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/PrismTH.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/PrismTH.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/PrismTH.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Profunctor.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Profunctor.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Profunctor.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Review.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Review.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Review.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Setter.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Setter.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Setter.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/TH.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/TH.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/TH.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Zoom.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Zoom.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Internal/Zoom.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Iso.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Iso.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Iso.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Level.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Level.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Level.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Operators.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Operators.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Operators.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Plated.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Plated.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Plated.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Prism.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Prism.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Prism.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Profunctor.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Profunctor.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Profunctor.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Reified.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Reified.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Reified.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Review.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Review.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Review.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Setter.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Setter.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Setter.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/TH.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/TH.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/TH.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Traversal.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Traversal.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Traversal.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Tuple.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Tuple.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Tuple.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Type.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Type.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Type.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Unsound.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Unsound.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Unsound.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Wrapped.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Wrapped.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Wrapped.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Zoom.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Zoom.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Lens/Zoom.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Monad
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Monad/Error
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Monad/Error/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Monad/Error/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Monad/Error/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Parallel
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Parallel/Strategies
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Parallel/Strategies/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Parallel/Strategies/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Parallel/Strategies/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Seq
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Seq/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Seq/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Control/Seq/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Array
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Array/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Array/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Array/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Bits
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Bits/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Bits/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Bits/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lazy
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lazy/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lazy/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lazy/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Strict
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Strict/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Strict/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/ByteString/Strict/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Complex
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Complex/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Complex/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Complex/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Data
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Data/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Data/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Data/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Dynamic
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Dynamic/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Dynamic/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Dynamic/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/HashSet
/usr/lib64/ghc-8.10.7/lens-5.1/Data/HashSet/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/HashSet/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/HashSet/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/IntSet
/usr/lib64/ghc-8.10.7/lens-5.1/Data/IntSet/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/IntSet/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/IntSet/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/List
/usr/lib64/ghc-8.10.7/lens-5.1/Data/List/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/List/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/List/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Map
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Map/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Map/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Map/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Sequence
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Sequence/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Sequence/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Sequence/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Set
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Set/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Set/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Set/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lazy
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lazy/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lazy/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lazy/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Strict
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Strict/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Strict/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Text/Strict/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Tree
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Tree/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Tree/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Tree/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Typeable
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Typeable/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Typeable/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Typeable/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Generic
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Generic/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Generic/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Generic/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Data/Vector/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/GHC
/usr/lib64/ghc-8.10.7/lens-5.1/GHC/Generics
/usr/lib64/ghc-8.10.7/lens-5.1/GHC/Generics/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/GHC/Generics/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/GHC/Generics/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Language
/usr/lib64/ghc-8.10.7/lens-5.1/Language/Haskell
/usr/lib64/ghc-8.10.7/lens-5.1/Language/Haskell/TH
/usr/lib64/ghc-8.10.7/lens-5.1/Language/Haskell/TH/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Language/Haskell/TH/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Language/Haskell/TH/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Natural
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Natural/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Natural/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/Numeric/Natural/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/System
/usr/lib64/ghc-8.10.7/lens-5.1/System/Exit
/usr/lib64/ghc-8.10.7/lens-5.1/System/Exit/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/Exit/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/Exit/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/FilePath
/usr/lib64/ghc-8.10.7/lens-5.1/System/FilePath/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/FilePath/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/FilePath/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/IO
/usr/lib64/ghc-8.10.7/lens-5.1/System/IO/Error
/usr/lib64/ghc-8.10.7/lens-5.1/System/IO/Error/Lens.dyn_hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/IO/Error/Lens.hi
/usr/lib64/ghc-8.10.7/lens-5.1/System/IO/Error/Lens.p_hi
/usr/lib64/ghc-8.10.7/lens-5.1/libHSlens-5.1-FgbP1JfYeuJLm8bUEtxhJi.a
/usr/lib64/ghc-8.10.7/lens-5.1/libHSlens-5.1-FgbP1JfYeuJLm8bUEtxhJi_p.a
/usr/lib64/ghc-8.10.7/package.conf.d/lens-5.1.conf
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Exception-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-At.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Combinators.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Cons.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Each.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Empty.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Equality.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Extras.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Fold.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Getter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Indexed.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Bazaar.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-ByteString.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-CTypes.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Context.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Deque.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Exception.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-FieldTH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Fold.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Getter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Indexed.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Instances.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Iso.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Level.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-List.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Magma.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Prism.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-PrismTH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Profunctor.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Review.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Setter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-TH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal-Zoom.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Internal.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Iso.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Level.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Operators.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Plated.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Prism.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Profunctor.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Reified.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Review.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Setter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-TH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Traversal.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Tuple.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Type.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Unsound.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Wrapped.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens-Zoom.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Monad-Error-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Parallel-Strategies-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Control-Seq-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Array-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Bits-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-ByteString-Lazy-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-ByteString-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-ByteString-Strict-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Complex-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Data-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Dynamic-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-HashSet-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-IntSet-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-List-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Map-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Sequence-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Set-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Text-Lazy-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Text-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Text-Strict-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Tree-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Typeable-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Vector-Generic-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Data-Vector-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/GHC-Generics-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Language-Haskell-TH-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Numeric-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/Numeric-Natural-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/System-Exit-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/System-FilePath-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/System-IO-Error-Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-124.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-35.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-37.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-38.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-42.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-43.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-45.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-46.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-47.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-58.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-60.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-62.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-63.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-94.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-95.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-A.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-All.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-B.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-C.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-D.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-E.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-F.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-G.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-H.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-I.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-L.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-M.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-N.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-O.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-P.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-Q.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-R.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-S.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-T.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-U.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-V.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-W.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-X.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index-Z.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/doc-index.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/haddock-bundle.min.js
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/images
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/images/Hierarchy.png
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/images/overview.png
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/index.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/lens.haddock
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/lens.txt
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/linuwial.css
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/meta.json
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/quick-jump.css
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Exception.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.At.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Combinators.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Cons.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Each.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Empty.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Equality.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Extras.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Fold.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Getter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Indexed.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Bazaar.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.ByteString.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.CTypes.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Context.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Deque.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Exception.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.FieldTH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Fold.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Getter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Indexed.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Instances.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Iso.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Level.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.List.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Magma.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Prelude.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Prism.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.PrismTH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Profunctor.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Review.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Setter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.TH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.Zoom.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Internal.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Iso.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Level.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Operators.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Plated.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Prism.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Profunctor.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Reified.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Review.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Setter.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.TH.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Traversal.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Tuple.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Type.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Unsound.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Wrapped.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.Zoom.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Monad.Error.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Parallel.Strategies.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Control.Seq.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Array.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Bits.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.ByteString.Lazy.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.ByteString.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.ByteString.Strict.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Complex.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Data.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Dynamic.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.HashSet.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.IntSet.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.List.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Map.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Sequence.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Set.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Text.Lazy.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Text.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Text.Strict.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Tree.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Typeable.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Vector.Generic.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Data.Vector.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/GHC.Generics.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Language.Haskell.TH.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Numeric.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/Numeric.Natural.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/System.Exit.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/System.FilePath.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/System.IO.Error.Lens.html
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/highlight.js
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/src/style.css
/usr/share/doc/ghc-8.10.7/html/libraries/lens-5.1/synopsis.png
/usr/share/doc/packages/ghc-lens-devel
/usr/share/doc/packages/ghc-lens-devel/AUTHORS.markdown
/usr/share/doc/packages/ghc-lens-devel/CHANGELOG.markdown
/usr/share/doc/packages/ghc-lens-devel/README.markdown
/usr/share/doc/packages/ghc-lens-devel/examples
/usr/share/doc/packages/ghc-lens-devel/examples/.hlint.yaml
/usr/share/doc/packages/ghc-lens-devel/examples/Aeson.hs
/usr/share/doc/packages/ghc-lens-devel/examples/LICENSE
/usr/share/doc/packages/ghc-lens-devel/examples/Plates.hs
/usr/share/doc/packages/ghc-lens-devel/examples/Pong.hs
/usr/share/doc/packages/ghc-lens-devel/examples/Setup.lhs
/usr/share/doc/packages/ghc-lens-devel/examples/Turtle.hs
/usr/share/doc/packages/ghc-lens-devel/examples/lens-examples.cabal


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:00:22 2024