Hoogle Search

Within LTS Haskell 24.20 (ghc-9.10.3)

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

  1. showChar :: Char -> ShowS

    copilot-language Copilot.Language.Prelude

    utility function converting a Char to a show function that simply prepends the character unchanged.

  2. showList :: Show a => [a] -> ShowS

    copilot-language Copilot.Language.Prelude

    The method showList is provided to allow the programmer to give a specialised way of showing lists of values. For example, this is used by the predefined Show instance of the Char type, where values of type String should be shown in double quotes, rather than between square brackets.

  3. showParen :: Bool -> ShowS -> ShowS

    copilot-language Copilot.Language.Prelude

    utility function that surrounds the inner show function with parentheses when the Bool parameter is True.

  4. showString :: String -> ShowS

    copilot-language Copilot.Language.Prelude

    utility function converting a String to a show function that simply prepends the string unchanged.

  5. shows :: Show a => a -> ShowS

    copilot-language Copilot.Language.Prelude

    equivalent to showsPrec with a precedence of 0.

  6. showsPrec :: Show a => Int -> a -> ShowS

    copilot-language Copilot.Language.Prelude

    Convert a value to a readable String. showsPrec should satisfy the law

    showsPrec d x r ++ s  ==  showsPrec d x (r ++ s)
    
    Derived instances of Read and Show satisfy the following: That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  7. showSci :: DecimalPlaces -> Scientific -> String

    detour-via-sci Data.Via.Scientific

    Shows a Scientific value with a fixed number of decimal places.

    >>> let x = 0.1122334455667788
    
    >>> showSci (DecimalPlaces 16) x
    "0.1122334455667788"
    
    >>> showSci (DecimalPlaces 8) x
    "0.11223345"
    
    >>> showSci (DecimalPlaces 4) x
    "0.1122"
    
    >>> showSci (DecimalPlaces 1) x
    "0.1"
    
    >>> showSci (DecimalPlaces 0) x
    "0"
    
    >>> showSci (DecimalPlaces (-1)) x
    "0"
    
    >>> showSci (DecimalPlaces 32) x
    "0.11223344556677880000000000000000"
    

  8. showAnchor :: (RealFloat n, Typeable n, Monoid m, Semigroup m, Renderable (Path V2 n) b, IsName a) => a -> Anchored (QDiagram b V2 n m) -> Anchored (QDiagram b V2 n m)

    diagrams-contrib Diagrams.Anchors

    Show a particular anchor in the Anchored object.

  9. showAnchor_ :: (RealFloat n, Typeable n, Monoid m, Semigroup m, Renderable (Path V2 n) b, IsName a) => a -> Anchored (QDiagram b V2 n m) -> QDiagram b V2 n m

    diagrams-contrib Diagrams.Anchors

    Show a particular anchor in the Anchored object, then unanchor.

  10. showGenerator :: (Renderable (Path V2 n) b, TypeableFloat n) => Generator n -> QDiagram b V2 n Any

    diagrams-contrib Diagrams.TwoD.Path.IteratedSubset

    Create a graphical representation of a generator, using half arrowheads to show the orientation of each segment.

Page 167 of many | Previous | Next