Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
call' :: Serializable a => NodeId -> Closure (Process a) -> Process adistributed-process Control.Distributed.Process.Internal.Closure.Explicit Works just like standard call, but with a simpler signature.
finally :: Process a -> Process b -> Process adistributed-process Control.Distributed.Process.Internal.Primitives Deprecated: Use Control.Monad.Catch.finally instead
call :: Serializable a => Static (SerializableDict a) -> NodeId -> Closure (Process a) -> Process adistributed-process Control.Distributed.Process.Internal.Spawn Run a process remotely and wait for it to reply We monitor the remote process: if it dies before it can send a reply, we die too. For more information about Static, SerializableDict, and Closure, see Control.Distributed.Process.Closure. See also spawn.
-
distributed-process Control.Distributed.Process.Management.Internal.Trace.Types No documentation available.
realLength :: HasChars a => a -> Intdoclayout Text.DocLayout Get real length of string, taking into account combining and double-wide characters. Ambiguous characters are treated as width 1.
realLengthNarrowContext :: HasChars a => a -> Intdoclayout Text.DocLayout Get the real length of a string, taking into account combining and double-wide characters. Ambiguous characters are treated as width 1.
realLengthNarrowContextNoShortcut :: HasChars a => a -> Intdoclayout Text.DocLayout Like realLengthNarrowContext, but avoids optimizations (shortcuts). This is exposed for testing, to ensure that the optimizations are safe.
realLengthWideContext :: HasChars a => a -> Intdoclayout Text.DocLayout Get the real length of a string, taking into account combining and double-wide characters. Ambiguous characters are treated as width 2.
realLengthWideContextNoShortcut :: HasChars a => a -> Intdoclayout Text.DocLayout Like realLengthWideContext, but avoids optimizations (shortcuts). This is exposed for testing, to ensure that the optimizations are safe.
-
hasql Hasql.TestingKit.Preludes.Base finallyE a b executes computation a followed by computation b, even if a exits early by throwing an exception. In the latter case, the exception is re-thrown after b has been executed.