Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
mixed-types-num Numeric.MixedTypes.PreludeHiding Strict (call-by-value) application operator. It takes a function and an argument, evaluates the argument to weak head normal form (WHNF), then calls the function with that value.
(
$$ ) :: Binding r s i => (i -> r) -> Number r i -> rrelational-query Database.Relational.Arrow Unsafely apply sequence number. Only safe to build corresponding record type.
(
$$! ) :: (i -> r) -> Number r i -> rrelational-query Database.Relational.Arrow Unsafely apply sequence number.
(
$$ ) :: Binding r s i => (i -> r) -> Number r i -> rrelational-query Database.Relational.Sequence Unsafely apply sequence number. Only safe to build corresponding record type.
(
$$! ) :: (i -> r) -> Number r i -> rrelational-query Database.Relational.Sequence Unsafely apply sequence number.
-
stm-conduit Data.Conduit.Async An operator form of buffer. In general you should be able to replace any use of $$ with $$& and suddenly reap the benefit of concurrency, if your conduits were spending time waiting on each other. The underlying monad must always be an instance of 'MonadBaseControl IO'. If at least one of the two conduits is a CFConduit, it must additionally be a in instance of MonadResource.
>>> CL.sourceList [1,2,3] $$& CL.consume [1,2,3]
It can be combined with $=& and $=. This creates two threads; the first thread produces the list and the second thread does the map and the consume:>>> CL.sourceList [1,2,3] $$& mapC (*2) $= CL.consume [2,4,6]
This creates three threads. The three conduits all run in their own threads:>>> CL.sourceList [1,2,3] $$& mapC (*2) $=& CL.consume [2,4,6]
>>> CL.sourceList [1,2,3] $$& (mapC (*2) $= mapC (+1)) $=& CL.consume [3,5,7]
-
stm-conduit Data.Conduit.Async -
synthesizer-dimensional Synthesizer.Dimensional.Arrow No documentation available.
-
synthesizer-dimensional Synthesizer.Dimensional.Arrow No documentation available.
-
synthesizer-dimensional Synthesizer.Dimensional.Causal.Process No documentation available.