extensible-effects-concurrent-0.32.0: Message passing concurrency as extensible-effect

Safe HaskellNone
LanguageHaskell2010

Control.Eff.Concurrent.Misc

Description

Internal module containing internal helpers that didn't make it into their own library.

Synopsis

Documentation

showSTypeRepPrec :: Int -> SomeTypeRep -> ShowS Source #

An internal utility to print Typeable without the kinds. This is like showsPrec in that it accepts a precedence parameter, and the result is in parentheses when the precedence is higher than 9.

Since: 0.24.0

showSTypeRep :: SomeTypeRep -> ShowS Source #

This is equivalent to showSTypeRepPrec 0

Since: 0.24.0

showSTypeable :: forall message. Typeable message => ShowS Source #

Render a Typeable to a ShowS.

Since: 0.28.0

showSPrecTypeable :: forall message. Typeable message => Int -> ShowS Source #

Render a Typeable to a ShowS with a precedence parameter.

Since: 0.28.0