Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

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

  1. allowNonTerminatingReductions :: MonadTCEnv m => m a -> m a

    Agda Agda.TypeChecking.Monad.Env

    Allow all reductions including non-terminating functions.

  2. allMetaClasses :: [MetaClass]

    Agda Agda.TypeChecking.Monad.MetaVars

    All possible metavariable classes.

  3. allFlexVars :: [IsForced] -> Telescope -> FlexibleVars

    Agda Agda.TypeChecking.Rules.LHS.Problem

    No documentation available.

  4. allLeft :: [Either a b] -> Maybe [a]

    Agda Agda.Utils.Either

    Returns Just input_with_tags_stripped if all elements are to the Left, and otherwise Nothing.

  5. allRight :: [Either a b] -> Maybe [b]

    Agda Agda.Utils.Either

    Returns Just input_with_tags_stripped if all elements are to the right, and otherwise Nothing.

    allRight xs ==
    if all isRight xs then
    Just (map ((Right x) -> x) xs)
    else
    Nothing
    

  6. allNodes :: Nodes n -> Set n

    Agda Agda.Utils.Graph.AdjacencyMap.Unidirectional

    All nodes, with or without edges.

  7. allConsecutive :: (a -> a -> Bool) -> [a] -> Bool

    Agda Agda.Utils.List

    Check whether all consecutive elements of a list satisfy the given relation. O(n).

  8. allDuplicates :: Ord a => [a] -> [a]

    Agda Agda.Utils.List

    Remove the first representative for each list element. Thus, returns all duplicate copies. O(n log n). allDuplicates xs == sort $ xs \ nub xs.

  9. allEqual :: Eq a => [a] -> Bool

    Agda Agda.Utils.List

    Checks if all the elements in the list are equal. Assumes that the Eq instance stands for an equivalence relation. O(n).

  10. allEqual :: Eq a => List1 a -> Bool

    Agda Agda.Utils.List1

    Checks if all the elements in the list are equal. Assumes that the Eq instance stands for an equivalence relation. O(n).

Page 126 of many | Previous | Next