Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. showInfixl' :: (Show a, Show b) => String -> Int -> a -> b -> PrecShowS

    show-combinators Text.Show.Combinators

    Show an applied infix operator which is left associative (infixl). Use with care, see showInfixl. This is a shorthand for showInfixl when the arguments types are instances of Show. By default, prefer showInfix and showInfix'.

  2. showInfixr :: String -> Int -> PrecShowS -> PrecShowS -> PrecShowS

    show-combinators Text.Show.Combinators

    Show an applied infix operator which is right associative (infixr). Use with care.

    Warning

    This combinator assumes that, if there is another infix operator to the right, it is either right associative with the same precedence, or it has a different precedence. An expression containing two operators at the same level with different associativities is ambiguous and will not be shown correctly with showInfixl and showInfixr. By default, prefer showInfix and showInfix'.

    Example usage

    showList :: Show a => [a] -> PrecShowS
    showList [] = showCon "[]"
    showList (x : xs) = showInfixr ":" 5 (flip showsPrec x) (showList xs)
    
    -- Example output:
    -- > 0 : 1 : 2 : 3 : []
    

  3. showInfixr' :: (Show a, Show b) => String -> Int -> a -> b -> PrecShowS

    show-combinators Text.Show.Combinators

    Show an applied infix operator which is right associative (infixr). Use with care, see showInfixr. This is a shorthand for showInfixr when the arguments types are instances of Show. By default, prefer showInfix and showInfix'.

  4. showRecord :: String -> ShowFields -> PrecShowS

    show-combinators Text.Show.Combinators

    Show a record. The first argument is the constructor name. The second represents the set of record fields.

  5. showM3x3 :: Show a => M3x3 a -> String

    Color Graphics.Color.Algebra

    No documentation available.

  6. showV3 :: Show a => V3 a -> String

    Color Graphics.Color.Algebra

    No documentation available.

  7. showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowS

    Color Graphics.Color.Model

    Display the cs portion of the pixel. Color itself will not be evaluated.

  8. showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowS

    Color Graphics.Color.Model

    Display the cs portion of the pixel. Color itself will not be evaluated.

  9. showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowS

    Color Graphics.Color.Model

    Display the cs portion of the pixel. Color itself will not be evaluated.

  10. showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowS

    Color Graphics.Color.Model

    Display the cs portion of the pixel. Color itself will not be evaluated.

Page 92 of many | Previous | Next