Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

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

  1. showToPatQ :: Show a => a -> PatQ

    haskell-src-meta Language.Haskell.Meta.Utils

    No documentation available.

  2. showsPrec :: (Show f, Show a) => Int -> f a -> ShowS

    non-empty Data.NonEmpty.Class

    No documentation available.

  3. showsPrec :: [r -> r -> Maybe ShowS] -> String -> r -> Int -> r -> ShowS

    data-accessor Data.Accessor.Show

    No documentation available.

  4. showToken :: Token -> String

    haskell-src-exts Language.Haskell.Exts.Lexer

    No documentation available.

  5. showInt :: Int -> String

    haskell-src-exts Language.Haskell.Exts.SrcLoc

    No documentation available.

  6. showInternal :: Storable t => Matrix t -> IO ()

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  7. showCommandForUser :: FilePath -> [String] -> String

    io-streams System.IO.Streams.Process

    Given a program p and arguments args, showCommandForUser p args returns a string suitable for pasting into /bin/sh (on Unix systems) or CMD.EXE (on Windows).

  8. showToPathPiece :: Show s => s -> Text

    path-pieces Web.PathPieces

    See the documentation for readFromPathPiece. Since 0.2.1.

  9. showCodecABit :: Codec context input output -> String

    autodocodec Autodocodec

    Show a codec to a human. This function exists for codec debugging. It omits any unshowable information from the output.

  10. shownBoundedEnumCodec :: (Show enum, Eq enum, Enum enum, Bounded enum) => JSONCodec enum

    autodocodec Autodocodec

    A codec for a Bounded Enum that uses its Show instance to have the values correspond to literal Text values.

    Example usage

    >>> data Fruit = Apple | Orange deriving (Show, Eq, Enum, Bounded)
    
    >>> let c = shownBoundedEnumCodec
    
    >>> toJSONVia c Apple
    String "Apple"
    
    >>> JSON.parseMaybe (parseJSONVia c) (String "Orange") :: Maybe Fruit
    Just Orange
    

Page 72 of many | Previous | Next