Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
$!! ) :: NFData a => (a -> b) -> a -> brio RIO.Prelude the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.
(
$!! ) :: WNFData a => (a -> b) -> a -> bhxt Control.FlatSeq No documentation available.
(
$!! ) :: NFData a => (a -> b) -> a -> brelude Relude.DeepSeq the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.
-
singletons-base Data.List.NonEmpty.Singletons No documentation available.
-
singletons-base Data.List.Singletons No documentation available.
-
singletons-base Prelude.Singletons No documentation available.
(
$!! ) :: NFData a => (a -> b) -> a -> bprotolude Protolude the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.
(
$!! ) :: NFData a => (a -> b) -> a -> bclassy-prelude ClassyPrelude the deep analogue of $!. In the expression f $!! x, x is fully evaluated before the function f is applied to it.
(
^!! ) :: Monad m => s -> Acting m [a] s a -> m [a]lens-action Control.Lens.Action Perform a MonadicFold and collect all of the results in a list.
>>> ["ab","cd","ef"]^!!folded.acts ["ace","acf","ade","adf","bce","bcf","bde","bdf"]
> [1,2]^!!folded.act (i -> putStr (show i ++ ": ") >> getLine).each.to succ 1: aa 2: bb "bbcc"
(
^@!! ) :: Monad m => s -> IndexedActing i m [(i, a)] s a -> m [(i, a)]lens-action Control.Lens.Action Obtain a list of all of the results of an IndexedMonadicFold.