Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
%/= ) :: Exp a -> Exp a -> Exp Boolnsis Development.NSIS The standard equality operators, lifted to Exp.
(
%< ) :: Exp Int -> Exp Int -> Exp Boolnsis Development.NSIS The standard comparison operators, lifted to Exp.
(
%<= ) :: Exp Int -> Exp Int -> Exp Boolnsis Development.NSIS The standard comparison operators, lifted to Exp.
(
%== ) :: Exp a -> Exp a -> Exp Boolnsis Development.NSIS The standard equality operators, lifted to Exp.
(
%> ) :: Exp Int -> Exp Int -> Exp Boolnsis Development.NSIS The standard comparison operators, lifted to Exp.
(
%>= ) :: Exp Int -> Exp Int -> Exp Boolnsis Development.NSIS The standard comparison operators, lifted to Exp.
(
%|| ) :: Exp Bool -> Exp Bool -> Exp Boolnsis Development.NSIS Short circuiting boolean operators, equivalent to && and || but on Exp.
(
%% ) :: (Show a, Show b) => String -> (a, b) -> Stringpercent-format Text.PercentFormat Formats two values into a string without finalizing: leaving duplicate percent signs & remaining format sequences.
> "%s %s!" %% ("Hello","World") "Hello World!"
> "load avg: %.2f %.2f %.2f" %% (0.666,0.333) "load avg: %0.67 %0.33 %.2f"
In general:s %% (x,y) == s % x % y
Please use -%% if you don't intend to format values into a string any further.(
%%% ) :: (Show a, Show b, Show c) => String -> (a, b, c) -> Stringpercent-format Text.PercentFormat Formats three values into a string without finalizing.
> "load avg: %.2f %.2f %.2f" %%% (0.666,0.333,0.1) "load avg: %0.67 %0.33 %0.10"
(
%%%% ) :: (Show a, Show b, Show c, Show d) => String -> (a, b, c, d) -> Stringpercent-format Text.PercentFormat Formats four values into a string without finalizing.