Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. showFixity :: Fixity -> String

    th-abstraction Language.Haskell.TH.Datatype

    Render a Fixity as it would appear in Haskell source. Example: infixl 5

  2. showFixityDirection :: FixityDirection -> String

    th-abstraction Language.Haskell.TH.Datatype

    Render a FixityDirection like it would appear in Haskell source. Examples: infixl infixr infix

  3. showTextData :: Show a => a -> Text

    http-api-data Web.HttpApiData

    Lower case. Convert to URL piece using Show instance. The result is always lower cased.

    >>> showTextData True
    "true"
    
    This can be used as a default implementation for enumeration types:
    >>> data MyData = Foo | Bar | Baz deriving (Show)
    
    >>> instance ToHttpApiData MyData where toUrlPiece = showTextData
    
    >>> toUrlPiece Foo
    "foo"
    

  4. showTextData :: Show a => a -> Text

    http-api-data Web.Internal.HttpApiData

    Lower case. Convert to URL piece using Show instance. The result is always lower cased.

    >>> showTextData True
    "true"
    
    This can be used as a default implementation for enumeration types:
    >>> data MyData = Foo | Bar | Baz deriving (Show)
    
    >>> instance ToHttpApiData MyData where toUrlPiece = showTextData
    
    >>> toUrlPiece Foo
    "foo"
    

  5. showt :: Show a => a -> Text

    http-api-data Web.Internal.HttpApiData

    Like show, but returns Text.

  6. showTree :: Show a => CharMap a -> String

    regex-tdfa Data.IntMap.CharMap2

    No documentation available.

  7. showTreeWith :: Show a => Bool -> Bool -> CharMap a -> String

    regex-tdfa Data.IntMap.CharMap2

    No documentation available.

  8. showTree :: (Enum key, Show a) => EnumMap key a -> String

    regex-tdfa Data.IntMap.EnumMap2

    No documentation available.

  9. showTreeWith :: (Enum key, Show a) => Bool -> Bool -> EnumMap key a -> String

    regex-tdfa Data.IntMap.EnumMap2

    No documentation available.

  10. showTree :: Enum e => EnumSet e -> String

    regex-tdfa Data.IntSet.EnumSet2

    No documentation available.

Page 69 of many | Previous | Next