Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. Forall :: ReservedType

    yi-mode-haskell Yi.Lexer.Haskell

    No documentation available.

  2. For' :: Reserved

    yi-mode-javascript Yi.Lexer.JavaScript

    No documentation available.

  3. data ForContent t

    yi-mode-javascript Yi.Syntax.JavaScript

    No documentation available.

  4. ForErr :: t -> ForContent t

    yi-mode-javascript Yi.Syntax.JavaScript

    No documentation available.

  5. ForIn :: t -> Expr t -> ForContent t

    yi-mode-javascript Yi.Syntax.JavaScript

    No documentation available.

  6. ForNormal :: t -> Expr t -> t -> Expr t -> ForContent t

    yi-mode-javascript Yi.Syntax.JavaScript

    No documentation available.

  7. biforM_ :: (Bifoldable t, Applicative f) => t a b -> (a -> f c) -> (b -> f d) -> f ()

    base Data.Bifoldable

    Alias for bifor_.

  8. bifor_ :: (Bifoldable t, Applicative f) => t a b -> (a -> f c) -> (b -> f d) -> f ()

    base Data.Bifoldable

    As bitraverse_, but with the structure as the primary argument. For a version that doesn't ignore the results, see bifor.

    Examples

    Basic usage:
    >>> bifor_ ("Hello", True) print (print . show)
    "Hello"
    "True"
    
    >>> bifor_ (Right True) print (print . show)
    "True"
    
    >>> bifor_ (Left "Hello") print (print . show)
    "Hello"
    

  9. bifor :: (Bitraversable t, Applicative f) => t a b -> (a -> f c) -> (b -> f d) -> f (t c d)

    base Data.Bitraversable

    bifor is bitraverse with the structure as the first argument. For a version that ignores the results, see bifor_.

    Examples

    Basic usage:
    >>> bifor (Left []) listToMaybe (find even)
    Nothing
    
    >>> bifor (Left [1, 2, 3]) listToMaybe (find even)
    Just (Left 1)
    
    >>> bifor (Right [4, 5]) listToMaybe (find even)
    Just (Right 4)
    
    >>> bifor ([1, 2, 3], [4, 5]) listToMaybe (find even)
    Just (1,4)
    
    >>> bifor ([], [4, 5]) listToMaybe (find even)
    Nothing
    

  10. biforM :: (Bitraversable t, Applicative f) => t a b -> (a -> f c) -> (b -> f d) -> f (t c d)

    base Data.Bitraversable

    Alias for bifor.

Page 393 of many | Previous | Next