Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
ad Numeric.AD.Internal.Reverse.Double No documentation available.
runWithDefaultPartials :: WithDefaultPartials (m :: Type -> Type) a -> m apandoc Text.Pandoc.Templates No documentation available.
findWithDefault :: Enum k => a -> k -> EnumMap k a -> aenummapset Data.EnumMap.Lazy No documentation available.
findWithDefault :: Enum k => a -> k -> EnumMap k a -> aenummapset Data.EnumMap.Strict No documentation available.
openBinaryTempFileWithDefaultPermissions :: FilePath -> String -> IO (FilePath, Handle)ghc-internal GHC.Internal.System.IO Like openBinaryTempFile, but uses the default file permissions
openTempFileWithDefaultPermissions :: FilePath -> String -> IO (FilePath, Handle)ghc-internal GHC.Internal.System.IO Like openTempFile, but uses the default file permissions
getEnvWithDefault :: String -> String -> Action Stringshake Development.Shake getEnvWithDefault def var returns the value of the environment variable var, or the default value def if it is not set. Similar to getEnv.
flags <- getEnvWithDefault "-Wall" "CFLAGS" cmd "gcc -c" [out] flags
mergeWithDefault :: Attr -> AttrMap -> Attrbrick Brick.AttrMap Given an attribute and a map, merge the attribute with the map's default attribute. If the map is forcing all lookups to a specific attribute, the forced attribute is returned without merging it with the one specified here. Otherwise the attribute given here is merged with the attribute map's default attribute in that any aspect of the specified attribute that is not provided falls back to the map default. For example,
mergeWithDefault (fg blue) $ attrMap (bg red) []
returnsblue `on` red
customMainWithDefaultVty :: Ord n => Maybe (BChan e) -> App s e n -> s -> IO (s, Vty)brick Brick.Main Like customMainWithVty, except that Vty is initialized with the default configuration.
lookupWithDefault :: forall (m :: Type -> Type) a . Monad m => a -> Focus a m afocus Focus Reproduces the behaviour of Data.Map.findWithDefault with a better name.