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.
showInfixl' :: (Show a, Show b) => String -> Int -> a -> b -> PrecShowSshow-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'.
showInfixr :: String -> Int -> PrecShowS -> PrecShowS -> PrecShowSshow-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 : []
showInfixr' :: (Show a, Show b) => String -> Int -> a -> b -> PrecShowSshow-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'.
showRecord :: String -> ShowFields -> PrecShowSshow-combinators Text.Show.Combinators Show a record. The first argument is the constructor name. The second represents the set of record fields.
showM3x3 :: Show a => M3x3 a -> StringColor Graphics.Color.Algebra No documentation available.
showV3 :: Show a => V3 a -> StringColor Graphics.Color.Algebra No documentation available.
showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowSColor Graphics.Color.Model Display the cs portion of the pixel. Color itself will not be evaluated.
showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowSColor Graphics.Color.Model Display the cs portion of the pixel. Color itself will not be evaluated.
showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowSColor Graphics.Color.Model Display the cs portion of the pixel. Color itself will not be evaluated.
showsColorModelName :: ColorModel cs e => Proxy (Color cs e) -> ShowSColor Graphics.Color.Model Display the cs portion of the pixel. Color itself will not be evaluated.