Hoogle Search
Within LTS Haskell 24.21 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
replicateT :: Default (Replicator r f) b b => r -> f bproduct-profunctors Data.Profunctor.Product.Examples A higher-order generalisation of replicate. For example
foo :: IO (String, String, String) foo = replicateT getLine
> foo Hello world ! ("Hello","world","!")traverseT :: Default (Traverse f) a b => a -> f bproduct-profunctors Data.Profunctor.Product.Examples Use sequenceT instead. It has a better name.
sequenceT :: Default (Sequence f) a b => a -> f bproduct-profunctors Data.Profunctor.Product.Examples A higher-order generalisation of sequenceA. For example
> sequenceT (print 3110, putStrLn World) :: IO ((), ()) 3110 World ((),())
-
mfsolve Math.MFSolve Return the value of the variable or throw an error.