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.
pumpFirstFP :: Basis -> FixedPoint -> FixedPointnumeric-prelude Number.Positional No documentation available.
-
numhask NumHask.Prelude No documentation available.
pattern
SDL_FIRSTEVENT :: (Eq a, Num a) => asdl2 SDL.Raw.Enum No documentation available.
deleteFirsts :: ListLike full item => full -> full -> fullListLike Data.ListLike List difference. Removes from the first list the first instance of each element of the second list. See (\\) and deleteFirstsBy
deleteFirstsBy :: ListLike full item => (item -> item -> Bool) -> full -> full -> fullListLike Data.ListLike Generic version of deleteFirsts
deleteFirsts :: ListLike full item => full -> full -> fullListLike Data.ListLike.Base List difference. Removes from the first list the first instance of each element of the second list. See (\\) and deleteFirstsBy
deleteFirstsBy :: ListLike full item => (item -> item -> Bool) -> full -> full -> fullListLike Data.ListLike.Base Generic version of deleteFirsts
-
alsa-seq Sound.ALSA.Sequencer.Client.Info No documentation available.
-
alsa-seq Sound.ALSA.Sequencer.Port.Info Get information about the first port on our client.
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]