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. 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)
    

  2. 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)
    

  3. anyTyConKey :: Unique

    ghc GHC.Builtin.Names

    No documentation available.

  4. anyclassStrategyIdKey :: Unique

    ghc GHC.Builtin.Names.TH

    No documentation available.

  5. anyclassStrategyName :: Name

    ghc GHC.Builtin.Names.TH

    No documentation available.

  6. anyTy :: Type

    ghc GHC.Builtin.Types

    No documentation available.

  7. anyTyCon :: TyCon

    ghc GHC.Builtin.Types

    No documentation available.

  8. anyTypeOfKind :: Kind -> Type

    ghc GHC.Builtin.Types

    No documentation available.

  9. anyFreeVarsOfCo :: (TyCoVar -> Bool) -> Coercion -> Bool

    ghc GHC.Core.Coercion

    No documentation available.

  10. anyInstEnv :: (ClsInst -> Bool) -> InstEnv -> Bool

    ghc GHC.Core.InstEnv

    No documentation available.

Page 47 of many | Previous | Next