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.
showMessage :: FpPrecision -> Message -> Stringhosc 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"]
showPacket :: FpPrecision -> PacketOf Message -> Stringhosc Sound.Osc.Text Printer for Packet.
showParen :: Bool -> ShowS -> ShowSincipit-base Incipit.Base utility function that surrounds the inner show function with parentheses when the Bool parameter is True.
-
incipit-base Incipit.Base utility function converting a String to a show function that simply prepends the string unchanged.
showsPrec :: Show a => Int -> a -> ShowSincipit-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.-
incremental-parser Text.ParserCombinators.Incremental No documentation available.
-
incremental-parser Text.ParserCombinators.Incremental.LeftBiasedLocal No documentation available.
-
incremental-parser Text.ParserCombinators.Incremental.Symmetric No documentation available.
-
intern Data.Interned.IntSet O(n). Show the tree that implements the set. The tree is shown in a compressed, hanging format.
showTreeWith :: Bool -> Bool -> IntSet -> Stringintern 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.