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.
-
mpi-hs Control.Distributed.MPI Thread support levels for MPI (see initThread):
- ThreadSingle (MPI_THREAD_SINGLE): The application must be
- single-threaded
- ThreadFunneled (MPI_THREAD_FUNNELED): The application might be multi-threaded, but only a single thread will call MPI
- ThreadSerialized (MPI_THREAD_SERIALIZED): The application might be multi-threaded, but the application guarantees that only one thread at a time will call MPI
- ThreadMultiple (MPI_THREAD_MULTIPLE): The application is multi-threaded, and different threads might call MPI at the same time
initThread :: ThreadSupport -> IO ThreadSupportmpi-hs Control.Distributed.MPI Initialize the MPI library (collective, MPI_Init_thread). Note that the provided level of thread support might be less than (!) the required level.
threadSupport :: IO (Maybe ThreadSupport)mpi-hs Control.Distributed.MPI When MPI is initialized with this library, then it will remember the provided level of thread support. (This might be less than the requested level.)
unsafeRead :: PrimMonad m => NonEmptyMVector (PrimState m) a -> Int -> m anonempty-vector Data.Vector.NonEmpty.Mutable Yield the element at the given position. No bounds checks are performed.
threads :: NvimHSDebugInstance -> [Async ()]nvim-hs Neovim.Debug No documentation available.
-
nvim-hs Neovim.Plugin No documentation available.
module Neovim.RPC.
SocketReader No documentation available.
runSocketReader :: Handle -> Config RPCConfig -> IO ()nvim-hs Neovim.RPC.SocketReader This function will establish a connection to the given socket and read msgpack-rpc events from it.
buildLaterReadNow :: Build a -> Build areactive-banana Reactive.Banana.Prim.Mid Pretend to return a value right now, but do not actually calculate it until later. NOTE: Accessing the value before it's written leads to an error. FIXME: Is there a way to have the value calculate on demand?
waitingThreadId :: WaitId -> ThreadIdsemaphore-compat System.Semaphore No documentation available.