Hoogle Search
Within LTS Haskell 24.12 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
beam-core Database.Beam.Query Convenience function to generate a SqlSelect that looks up a table row given a primary key.
lookupEntity :: Text -> Maybe Textcommonmark Commonmark.Entity Lookup an entity, using lookupNumericEntity if it starts with # and lookupNamedEntity otherwise
lookupReference :: Typeable a => Text -> ReferenceMap -> Maybe acommonmark Commonmark.ReferenceMap Lookup a reference in a reference map. If there are several values at this key, we return the first one in the list that can be converted to an a.
lookupDefault :: Configured a => a -> Config -> Name -> IO aconfigurator Data.Configurator Look up a name in the given Config. If a binding exists, and the value can be converted to the desired type, return it, otherwise return the default value.
lookupContext :: FromContext a b => Text -> Context a -> Maybe bdoctemplates Text.DocTemplates No documentation available.
lookupContext :: FromContext a b => Text -> Context a -> Maybe bdoctemplates Text.DocTemplates.Internal No documentation available.
lookupComparison :: String -> TypeRep -> [Expr] -> Maybe Exprexpress Data.Express O(n). Lookups for a comparison function (:: a -> a -> Bool) with the given name and argument type.
lookupName :: [Expr] -> Expr -> Stringexpress Data.Express O(n+m). Like name but lifted over an instance list and an Expr.
> lookupName preludeNameInstances (val False) "p"
> lookupName preludeNameInstances (val (0::Int)) "x"
This function defaults to "x" when no appropriate name is found.> lookupName [] (val False) "x"
lookupNames :: [Expr] -> Expr -> [String]express Data.Express O(n+m). A mix between lookupName and names: this returns an infinite list of names based on an instances list and an Expr.
lookupComparison :: String -> TypeRep -> [Expr] -> Maybe Exprexpress Data.Express.Instances O(n). Lookups for a comparison function (:: a -> a -> Bool) with the given name and argument type.