Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. anyM :: (Foldable f, Monad m) => (a -> m Bool) -> f a -> m Bool

    extra Data.Foldable.Extra

    A generalization of anyM to Foldable instances. Retains the short-circuiting behaviour.

  2. anySame :: Eq a => [a] -> Bool

    extra Data.List.Extra

    Is there any element which occurs more than once.

    anySame [1,1,2] == True
    anySame [1,2,3] == False
    anySame (1:2:1:undefined) == True
    anySame [] == False
    \xs -> anySame xs == (length (nub xs) < length xs)
    

  3. anyM :: Monad m => (a -> m Bool) -> [a] -> m Bool

    extra Extra

    A version of any lifted to a monad. Retains the short-circuiting behaviour.

    anyM Just [False,True ,undefined] == Just True
    anyM Just [False,False,undefined] == undefined
    \(f :: Int -> Maybe Bool) xs -> anyM f xs == orM (map f xs)
    

  4. anySame :: Eq a => [a] -> Bool

    extra Extra

    Is there any element which occurs more than once.

    anySame [1,1,2] == True
    anySame [1,2,3] == False
    anySame (1:2:1:undefined) == True
    anySame [] == False
    \xs -> anySame xs == (length (nub xs) < length xs)
    

  5. anyTyConKey :: Unique

    ghc GHC.Builtin.Names

    No documentation available.

  6. anyclassStrategyIdKey :: Unique

    ghc GHC.Builtin.Names.TH

    No documentation available.

  7. anyclassStrategyName :: Name

    ghc GHC.Builtin.Names.TH

    No documentation available.

  8. anyTy :: Type

    ghc GHC.Builtin.Types

    No documentation available.

  9. anyTyCon :: TyCon

    ghc GHC.Builtin.Types

    No documentation available.

  10. anyTypeOfKind :: Kind -> Type

    ghc GHC.Builtin.Types

    No documentation available.

Page 48 of many | Previous | Next