In the process of writing a simple RPN calculator, I have the following type aliases:
type Stack = List[Double]
type Operation = Stack => Option[Stack]
... and I have written a curious-looking line of Scala code:
val newStack = operations.foldLeft(Option(stack)) { _ flatMap _ }
This takes an initial stack of values and applies a list of operations to that stack. Each operation may fail (i.e. yields an Option[Stack]) so I sequence them with flatMap. The thing that's somewhat unusual about this (in my mind) is that I'm folding over a list of monadic functions, rather than folding over a list of data.
I want to know if there's a standard function that captures this "fold-bind" behavior. When I'm trying to play the "Name That Combinator" game, Hoogle is usually my friend, so I tried the same mental exercise in Haskell:
foldl (>>=) (Just stack) operations
The types here are:
foldl :: (a -> b -> a) -> a -> [b] -> a
(>>=) :: Monad m => m a -> (a -> m b) -> m b
So the type of my mystery foldl (>>=) combinator, after making the types of foldl and (>>=) line up, should be:
mysteryCombinator :: Monad m => m a -> [a -> m a] -> m a
... which is again what we'd expect. My problem is that searching Hoogle for a function with that type yields no results. I tried a couple other permutations that I thought might be reasonable: a -> [a -> m a] -> m a (i.e. starting with a non-monadic value), [a -> m a] -> m a -> m a (i.e. with arguments flipped), but no luck there either. So my question is, does anybody know a standard name for my mystery "fold-bind" combinator?

(>>=)are intended to be used in a right-associative manner, so there's a good chance this could cause bad performance problems (like a left-associative stack of(++)s does). – ehird Jan 3 '12 at 18:12[a -> m a]operations, in left-to-right order, to some startingaorm avalue? Also, keep in mind I'm not asking a language-specific question; performance characteristics will differ between Scala and Haskell (you could assume I'm usingfoldl'for strictness). All I really care about is whether this thing has a well-known name. – mergeconflict Jan 3 '12 at 18:29foldrcan be more efficient since that can stop early (in case of aNothing, for example). – Daniel Fischer Jan 3 '12 at 18:35foldl (>>=) Nothing [a,b,c]is likeNothing >>= (a >>= (b >>= c))). Though I would still use foldl' if nothing else prevented me from doing so. – Ingo Jan 3 '12 at 18:38foldl (>>=) Nothing [a,b,c] = ((Nothing >>= a) >>= b) >>= c. – Daniel Fischer Jan 3 '12 at 19:18