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.

  1. processWithDefault :: Text -> Template -> Context -> Text

    glabrous Text.Glabrous

    Process and replace missing variables in Context with the given default replacement Text.

  2. printSettingsGetDoubleWithDefault :: (PrintSettingsClass self, GlibString string) => self -> string -> Double -> IO Double

    gtk3 Graphics.UI.Gtk.Printing.PrintSettings

    Returns the floating point number represented by the value that is associated with key, or defaultVal if the value does not represent a floating point number. Floating point numbers are parsed with gAsciiStrtod.

  3. printSettingsGetIntWithDefault :: (PrintSettingsClass self, GlibString string) => self -> string -> Int -> IO Int

    gtk3 Graphics.UI.Gtk.Printing.PrintSettings

    Returns the value of key, interpreted as an integer, or the default value.

  4. findWithDefault :: (Hashable k, Ord k) => a -> k -> Map k a -> a

    hashmap Data.HashMap

    The expression (findWithDefault def k map) returns the value at key k or returns def when the key is not an element of the map.

  5. module Data.Mapping.MapWithDefault

    No documentation available.

  6. data MapWithDefault k v

    mappings Data.Mapping.MapWithDefault

    Mappings constant except on an enumerated set of values

  7. MapWithDefault :: v -> Map k v -> MapWithDefault k v

    mappings Data.Mapping.MapWithDefault

    No documentation available.

  8. fromListWithDefault :: forall (f :: Type -> Type) (n :: Nat) a . (Dom f a, CFreeMonoid f) => SNat n -> a -> [a] -> Sized f n a

    sized Data.Sized

    Construct a Sized f n a by padding default value if the given list is short. Since 0.5.0.0 (type changed)

  9. fromListWithDefault' :: forall (f :: Type -> Type) (n :: Nat) a . (KnownNat n, CFreeMonoid f, Dom f a) => a -> [a] -> Sized f n a

    sized Data.Sized

    fromListWithDefault with the result length inferred. Since 0.7.0.0

  10. toSizedWithDefault :: forall f (n :: Nat) a . (CFreeMonoid f, Dom f a) => SNat n -> a -> f a -> Sized f n a

    sized Data.Sized

    Construct a Sized f n a by padding default value if the given list is short. Since 0.7.0.0

Page 15 of many | Previous | Next