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.
trustMap :: p -> (v -> v) -> Checked p v -> Checked p vdata-checked Data.Checked.Strict Apply a fuction that preserves the property to the checked value. Note that p is evaluated to WHNF, so you can't use undefined.
distMatrix_ :: Source r Int => Array r Ix2 Int -> Array D Ix2 Doubledigraph Data.DiGraph.FloydWarshall Floyd Warshall Without Paths (more efficient, by factor of 2).
type
DFirstMassMoment = 'Dim 'Pos1 'Pos1 'Zero 'Zero 'Zero 'Zero 'Zerodimensional Numeric.Units.Dimensional.Quantities No documentation available.
type
FirstMassMoment = Quantity DFirstMassMomentdimensional Numeric.Units.Dimensional.Quantities No documentation available.
postMessage :: Exchange -> Message -> Process ()distributed-process-execution Control.Distributed.Process.Execution Posts a Message to an exchange.
postMessage :: Exchange -> Message -> Process ()distributed-process-execution Control.Distributed.Process.Execution.Exchange Posts a Message to an exchange.
firstJustM :: Monad m => (a -> m (Maybe b)) -> [a] -> m (Maybe b)distribution-opensuse OpenSuse.Prelude Like findM, but also allows you to compute some additional information in the predicate.
untilJustM :: Monad m => m (Maybe a) -> m adistribution-opensuse OpenSuse.Prelude Keep running an operation until it becomes a Just, then return the value inside the Just as the result of the overall loop.
whenJustM :: Monad m => m (Maybe a) -> (a -> m ()) -> m ()distribution-opensuse OpenSuse.Prelude Like whenJust, but where the test can be monadic.
whileJustM :: (Monad m, Monoid a) => m (Maybe a) -> m adistribution-opensuse OpenSuse.Prelude Keep running an operation until it becomes a Nothing, accumulating the monoid results inside the Justs as the result of the overall loop.