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.
-
gi-gtk3 GI.Gtk.Objects.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 asciiStrtod. Since: 2.10
-
gi-gtk3 GI.Gtk.Objects.PrintSettings Returns the value of key, interpreted as an integer, or the default value. Since: 2.10
-
gi-gtk4 GI.Gtk.Objects.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 asciiStrtod.
-
gi-gtk4 GI.Gtk.Objects.PrintSettings Returns the value of key, interpreted as an integer, or the default value.
-
gtk 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.
-
gtk Graphics.UI.Gtk.Printing.PrintSettings Returns the value of key, interpreted as an integer, or the default value.
compileFileWithDefault :: DefaultScope -> HeterocephalusSetting -> FilePath -> Q Expheterocephalus Text.Heterocephalus Same as compileFile but we can specify default scope.
compileFromStringWithDefault :: DefaultScope -> HeterocephalusSetting -> String -> Q Expheterocephalus Text.Heterocephalus No documentation available.
compileHtmlFileWithDefault :: FilePath -> DefaultScope -> Q Expheterocephalus Text.Heterocephalus Same as compileHtmlFile but allows the user to specify default values for template parameters.
>>> :set -XOverloadedStrings :{ putStr $ renderMarkup ( let as = ["<a>", "b"] in $(compileHtmlFileWithDefault "templates/sample.txt" [("as", [| ["foo", "bar"] |])] ) ) :} sample key: <a>, key: b,>>> :{ putStr $ renderMarkup ( $(compileHtmlFileWithDefault "templates/sample.txt" [("as", [| ["foo", "bar"] |])] ) ) :} sample key: foo, key: bar,compileTextFileWithDefault :: FilePath -> DefaultScope -> Q Expheterocephalus Text.Heterocephalus Same as compileText but allows the user to specify default values for template parameters.
>>> :set -XOverloadedStrings >>> :{ putStr $ renderMarkup ( let as = ["<a>", "b"] in $(compileTextFileWithDefault "templates/sample.txt" [("as", [| ["foo", "bar"] |])] ) ) :} sample key: <a>, key: b,>>> :{ putStr $ renderMarkup ( $(compileTextFileWithDefault "templates/sample.txt" [("as", [| ["foo", "bar"] |])] ) ) :} sample key: foo, key: bar,