Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. geqdefault :: (Generic a, GEq' (Rep a)) => a -> a -> Bool

    generic-deriving Generics.Deriving.Eq

    No documentation available.

  2. gsequence :: (GTraversable t, Monad m) => t (m a) -> m (t a)

    generic-deriving Generics.Deriving.Traversable

    No documentation available.

  3. gsequenceA :: (GTraversable t, Applicative f) => t (f a) -> f (t a)

    generic-deriving Generics.Deriving.Traversable

    No documentation available.

  4. seqOf :: forall k (is :: IxList) s a . Is k A_Fold => Optic' k is s a -> s -> Seq a

    optics-core Data.Sequence.Optics

    Construct a Seq from a fold.

    >>> seqOf folded ["hello","world"]
    fromList ["hello","world"]
    
    >>> seqOf (folded % _2) [("hello",1),("world",2),("!!!",3)]
    fromList [1,2,3]
    

  5. sequenceOf_ :: forall k f (is :: IxList) s a . (Is k A_Fold, Applicative f) => Optic' k is s (f a) -> s -> f ()

    optics-core Optics.Fold

    Evaluate each action in a structure observed by a Fold from left to right, ignoring the results.

    sequenceA_sequenceOf_ folded
    
    >>> sequenceOf_ each (putStrLn "hello",putStrLn "world")
    hello
    world
    

  6. data IxEq (i :: k) (is :: k1) (js :: k1)

    optics-core Optics.Internal.Optic.TypeLevel

    Tagged version of 'Data.Type.Equality.(:~:)' for carrying evidence that two index lists in a curried form are equal.

  7. sequenceOf :: forall k f (is :: IxList) s t b . (Is k A_Traversal, Applicative f) => Optic k is s t (f b) b -> s -> f t

    optics-core Optics.Traversal

    Evaluate each action in the structure from left to right, and collect the results.

    >>> sequenceOf each ([1,2],[3,4])
    [(1,3),(1,4),(2,3),(2,4)]
    
    sequencesequenceOf traversedtraverse id
    sequenceOf o ≡ traverseOf o id
    

  8. NotEqual :: [String] -> Result

    doctest-lib Test.DocTest.Base

    No documentation available.

  9. bigNatEq :: BigNat# -> BigNat# -> Bool

    ghc-bignum GHC.Num.BigNat

    Equality test for BigNat

  10. bigNatEq# :: BigNat# -> BigNat# -> Bool#

    ghc-bignum GHC.Num.BigNat

    Equality test for BigNat

Page 255 of many | Previous | Next