Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. type IxTraversal i s t a b = Optic A_Traversal WithIx i s t a b

    optics-core Optics.IxTraversal

    Type synonym for a type-modifying indexed traversal.

  2. type IxTraversal' i s a = Optic' A_Traversal WithIx i s a

    optics-core Optics.IxTraversal

    Type synonym for a type-preserving indexed traversal.

  3. type IxTraversalVL i s t a b = forall (f :: Type -> Type) . Applicative f => i -> a -> f b -> s -> f t

    optics-core Optics.IxTraversal

    Type synonym for a type-modifying van Laarhoven indexed traversal.

  4. type IxTraversalVL' i s a = IxTraversalVL i s s a a

    optics-core Optics.IxTraversal

    Type synonym for a type-preserving van Laarhoven indexed traversal.

  5. type IxList = [Type]

    optics-core Optics.Optic

    A list of index types, used for indexed optics.

  6. type family IxValue m

    diagrams-lib Diagrams.Prelude

    This provides a common notion of a value at an index that is shared by both Ixed and At.

  7. class Ixed m

    diagrams-lib Diagrams.Prelude

    Provides a simple Traversal lets you traverse the value at a given key in a Map or element at an ordinal position in a list or Seq.

  8. data Ix0

    massiv Data.Massiv.Core.Index

    Zero-dimension, i.e. a scalar. Can't really be used directly as there is no instance of Index for it, and is included for completeness.

  9. Ix0 :: Ix0

    massiv Data.Massiv.Core.Index

    No documentation available.

  10. type Ix1 = Int

    massiv Data.Massiv.Core.Index

    A type synonym for 1-dimensional index, i.e. Int.

    >>> 5 :: Ix1
    5
    

Page 14 of many | Previous | Next