|
|
|
|
Synopsis |
|
|
|
Documentation |
|
(<=<) :: Monad m => (b -> m c) -> (a -> m b) -> a -> m c | Source |
|
Also present in newer versions of the base package.
|
|
|
Monadic List.repeat.
|
|
|
repeat action until result fulfills condition
|
|
|
|
|
parameter order equal to that of nest
|
|
|
|
|
Lazy monadic conjunction.
That is, when the first action returns False,
then False is immediately returned, without running the second action.
|
|
|
Lazy monadic disjunction.
That is, when the first action returns True,
then True is immediately returned, without running the second action.
|
|
Produced by Haddock version 2.4.2 |