Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. flipfoldl' :: Foldable f => (a -> b -> b) -> b -> f a -> b

    relude Relude.Foldable.Fold

    Similar to foldl' but takes a function with its arguments flipped.

    >>> flipfoldl' (/) 5 [2,3] :: Rational
    15 % 2
    
    This function can be useful for constructing containers from lists.

  2. flipRectangleB :: Point -> Point -> BufferM (Point, Point)

    yi-core Yi.Buffer.HighLevel

    No documentation available.

  3. flipRectangleB :: Point -> Point -> BufferM (Point, Point)

    yi-core Yi.Config.Simple

    No documentation available.

  4. flipValName :: Name

    deriving-compat Data.Deriving.Internal

    No documentation available.

  5. flipAL :: (Eq key, Eq val) => [(key, val)] -> [(val, [key])]

    MissingH Data.List.Utils

    Flips an association list. Converts (key1, val), (key2, val) pairs to (val, [key1, key2]).

  6. flipM :: (Ord key, Ord val) => Map key val -> Map val [key]

    MissingH Data.Map.Utils

    Flips a Map. See flipAL for more on the similar function for lists.

  7. flippedLookupM :: (Ord val, Ord key) => val -> Map key val -> [key]

    MissingH Data.Map.Utils

    Returns a list of all keys in the Map whose value matches the parameter. If the value does not occur in the Map, the empty list is returned.

  8. flipSwap :: SwapFlag -> SwapFlag

    ghc-lib-parser GHC.Types.Basic

    No documentation available.

  9. flipY :: Subtractive a => Point a -> Point a

    numhask-space NumHask.Space.Point

    reflect on x-axis

  10. flipAxes :: Rect a -> Rect a

    numhask-space NumHask.Space.Rect

    flip axes

    >>> flipAxes (Rect 1 2 3 4)
    Rect 3 4 1 2
    

Page 9 of many | Previous | Next