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. showMessage :: FpPrecision -> Message -> String

    hosc Sound.Osc.Text

    Printer for Message.

    >>> let aMessage = Message "/addr" [Int32 1, Int64 2, Float 3, Double 4, string "five", blob [6, 7], midi (8, 9, 10, 11)]
    
    >>> showMessage (Just 4) aMessage
    "/addr ,ihfdsbm 1 2 3.0 4.0 five 0607 08090a0b"
    
    >>> let aMessageSeq = [Message "/c_set" [Int32 1, Float 2.3], Message "/s_new" [string "sine", Int32 (-1), Int32 1, Int32 1]]
    
    >>> map (showMessage (Just 4)) aMessageSeq
    ["/c_set ,if 1 2.3","/s_new ,siii sine -1 1 1"]
    

  2. showPacket :: FpPrecision -> PacketOf Message -> String

    hosc Sound.Osc.Text

    Printer for Packet.

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

    incipit-base Incipit.Base

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

  4. showString :: String -> ShowS

    incipit-base Incipit.Base

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

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

    incipit-base Incipit.Base

    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.

  6. showWith :: (Monoid s, Monoid r, Show s) => ((s -> Parser t s r) -> String) -> (r -> String) -> Parser t s r -> String

    incremental-parser Text.ParserCombinators.Incremental

    No documentation available.

  7. showWith :: (Monoid s, Monoid r, Show s) => ((s -> Parser t s r) -> String) -> (r -> String) -> Parser t s r -> String

    incremental-parser Text.ParserCombinators.Incremental.LeftBiasedLocal

    No documentation available.

  8. showWith :: (Monoid s, Monoid r, Show s) => ((s -> Parser t s r) -> String) -> (r -> String) -> Parser t s r -> String

    incremental-parser Text.ParserCombinators.Incremental.Symmetric

    No documentation available.

  9. showTree :: IntSet -> String

    intern Data.Interned.IntSet

    O(n). Show the tree that implements the set. The tree is shown in a compressed, hanging format.

  10. showTreeWith :: Bool -> Bool -> IntSet -> String

    intern Data.Interned.IntSet

    O(n). The expression (showTreeWith hang wide map) shows the tree that implements the set. If hang is True, a hanging tree is shown otherwise a rotated tree is shown. If wide is True, an extra wide version is shown.

Page 114 of many | Previous | Next