Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
ProcessLinkException :: ProcessId -> DiedReason -> ProcessLinkExceptiondistributed-process Control.Distributed.Process.Internal.Types No documentation available.
data
ProcessMonitorNotification distributed-process Control.Distributed.Process.Internal.Types Message sent by process monitors
ProcessMonitorNotification :: MonitorRef -> ProcessId -> DiedReason -> ProcessMonitorNotificationdistributed-process Control.Distributed.Process.Internal.Types No documentation available.
data
ProcessRegistrationException distributed-process Control.Distributed.Process.Internal.Types Exception thrown when a process attempts to register a process under an already-registered name or to unregister a name that hasn't been registered. Returns the name and the identifier of the process that owns it, if any.
ProcessRegistrationException :: String -> !Maybe ProcessId -> ProcessRegistrationExceptiondistributed-process Control.Distributed.Process.Internal.Types No documentation available.
-
distributed-process Control.Distributed.Process.Internal.Types Signals to the node controller (see NCMsg)
module Control.Distributed.Process.Management.Internal.Trace.
Primitives Keeps the tracing API calls separate from the Tracer implementation, which allows us to avoid a nasty import cycle between tracing and the messaging primitives that rely on it, and also between the node controller (which requires access to the tracing related elements of our RemoteTable) and the Debug module, which requires forkProcess. This module is also used by the management agent, which relies on the tracing infrastructure's messaging fabric.
Prefixed :: Text -> Doc a -> Doc adoclayout Text.DocLayout Doc with each line prefixed with text. Note that trailing blanks are omitted from the prefix when the line after it is empty.
data
Partition (b :: a -> Exp Bool) (c :: [a]) (d :: ([a], [a]))first-class-families Fcf Split a list into one where all elements satisfy a predicate, and a second where no elements satisfy it.
Example
>>> :kind! Eval (Partition ((>=) 35) [20, 30, 40, 50]) Eval (Partition ((>=) 35) [20, 30, 40, 50]) :: ([Natural], [Natural]) = '([20, 30], [40, 50])
-
first-class-families Fcf No documentation available.