Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. pumpFirstFP :: Basis -> FixedPoint -> FixedPoint

    numeric-prelude Number.Positional

    No documentation available.

  2. getFirst :: First a -> a

    numhask NumHask.Prelude

    No documentation available.

  3. pattern SDL_FIRSTEVENT :: (Eq a, Num a) => a

    sdl2 SDL.Raw.Enum

    No documentation available.

  4. deleteFirsts :: ListLike full item => full -> full -> full

    ListLike Data.ListLike

    List difference. Removes from the first list the first instance of each element of the second list. See (\\) and deleteFirstsBy

  5. deleteFirstsBy :: ListLike full item => (item -> item -> Bool) -> full -> full -> full

    ListLike Data.ListLike

    Generic version of deleteFirsts

  6. deleteFirsts :: ListLike full item => full -> full -> full

    ListLike Data.ListLike.Base

    List difference. Removes from the first list the first instance of each element of the second list. See (\\) and deleteFirstsBy

  7. deleteFirstsBy :: ListLike full item => (item -> item -> Bool) -> full -> full -> full

    ListLike Data.ListLike.Base

    Generic version of deleteFirsts

  8. queryFirst :: T mode -> IO T

    alsa-seq Sound.ALSA.Sequencer.Client.Info

    No documentation available.

  9. queryFirst :: T mode -> IO T

    alsa-seq Sound.ALSA.Sequencer.Port.Info

    Get information about the first port on our client.

  10. deleteFirstsBy :: (a -> a -> Bool) -> [a] -> [a] -> [a]

    basic-prelude BasicPrelude

    The deleteFirstsBy function takes a predicate and two lists and returns the first list with the first occurrence of each element of the second list removed. This is the non-overloaded version of (\\).

    (\\) == deleteFirstsBy (==)
    
    The second list must be finite, but the first may be infinite.

    Examples

    >>> deleteFirstsBy (>) [1..10] [3, 4, 5]
    [4,5,6,7,8,9,10]
    
    >>> deleteFirstsBy (/=) [1..10] [1, 3, 5]
    [4,5,6,7,8,9,10]
    

Page 56 of many | Previous | Next