Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
optics-core Optics.Lens Make a Lens from two other lenses by executing them on their respective halves of a product.
>>> (Left 'a', Right 'b') ^. alongside chosen chosen ('a','b')>>> (Left 'a', Right 'b') & alongside chosen chosen .~ ('c','d') (Left 'c',Right 'd') -
optics-core Optics.Prism Use a Prism to work over part of a structure.
-
typed-process System.Process.Typed The platform specific type for a process identifier. This is always an integral type. Width and signedness are platform specific.
getPid :: Process stdin stdout stderr -> IO (Maybe Pid)typed-process System.Process.Typed Returns the PID (process ID) of a subprocess. Nothing is returned if the underlying ProcessHandle was already closed. Otherwise a PID is returned that remains valid as long as the handle is open. The operating system may reuse the PID as soon as the last handle to the process is closed.
width :: Doc -> (Int -> Doc) -> Docansi-wl-pprint Text.PrettyPrint.ANSI.Leijen No documentation available.
ioVoid :: IO a -> State# RealWorld -> State# RealWorldghc-bignum GHC.Num.Primitives No documentation available.
-
gi-glib GI.GLib.Callbacks Type for the callback on the (unwrapped) C side.
-
gi-glib GI.GLib.Callbacks Declares a type of function which takes no arguments and has no return value. It is used to specify the type function passed to atexit.
dynamic_VoidFunc :: (HasCallStack, MonadIO m) => FunPtr C_VoidFunc -> m ()gi-glib GI.GLib.Callbacks Given a pointer to a foreign C function, wrap it into a function callable from Haskell.
genClosure_VoidFunc :: MonadIO m => VoidFunc -> m (GClosure C_VoidFunc)gi-glib GI.GLib.Callbacks Wrap the callback into a GClosure.