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.

  1. (%/=) :: Exp a -> Exp a -> Exp Bool

    nsis Development.NSIS

    The standard equality operators, lifted to Exp.

  2. (%<) :: Exp Int -> Exp Int -> Exp Bool

    nsis Development.NSIS

    The standard comparison operators, lifted to Exp.

  3. (%<=) :: Exp Int -> Exp Int -> Exp Bool

    nsis Development.NSIS

    The standard comparison operators, lifted to Exp.

  4. (%==) :: Exp a -> Exp a -> Exp Bool

    nsis Development.NSIS

    The standard equality operators, lifted to Exp.

  5. (%>) :: Exp Int -> Exp Int -> Exp Bool

    nsis Development.NSIS

    The standard comparison operators, lifted to Exp.

  6. (%>=) :: Exp Int -> Exp Int -> Exp Bool

    nsis Development.NSIS

    The standard comparison operators, lifted to Exp.

  7. (%||) :: Exp Bool -> Exp Bool -> Exp Bool

    nsis Development.NSIS

    Short circuiting boolean operators, equivalent to && and || but on Exp.

  8. (%%) :: (Show a, Show b) => String -> (a, b) -> String

    percent-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.

  9. (%%%) :: (Show a, Show b, Show c) => String -> (a, b, c) -> String

    percent-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"
    

  10. (%%%%) :: (Show a, Show b, Show c, Show d) => String -> (a, b, c, d) -> String

    percent-format Text.PercentFormat

    Formats four values into a string without finalizing.

Page 24 of many | Previous | Next