The following simple function applies a given monadic function iteratively until it hits a Nothing, at which point it returns the last non-Nothing value. It does what I need, and I understand how it works.
lastJustM :: (Monad m) => (a -> m (Maybe a)) -> a -> m a
lastJustM g x = g x >>= maybe (return x) (lastJustM g)
As part of my self-education in Haskell I'm trying to avoid explicit recursion (or at least understand how to) whenever I can. It seems like there should be a simple non-explicitly recursive solution in this case, but I'm having trouble figuring it out.
I don't want something like a monadic version of takeWhile, since it could be expensive to collect all the pre-Nothing values, and I don't care about them anyway.
I checked Hoogle for the signature and nothing shows up. The m (Maybe a) bit makes me think a monad transformer might be useful here, but I don't really have the intuitions I'd need to come up with the details (yet).
It's probably either embarrassingly easy to do this or embarrassingly easy to see why it can't or shouldn't be done, but this wouldn't be the first time I've used self-embarrassment as a pedagogical strategy.
Update: I could of course provide a predicate instead of using Maybe: something like (a -> Bool) -> (a -> m a) -> a (returning the last value for which the predicate is true) would work just as well. What I'm interested in is a way to write either version without explicit recursion, using standard combinators.
Background: Here's a simplified working example for context: suppose we're interested in random walks in the unit square, but we only care about points of exit. We have the following step function:
randomStep :: (Floating a, Ord a, Random a) =>
a -> (a, a) -> State StdGen (Maybe (a, a))
randomStep s (x, y) = do
(a, gen') <- randomR (0, 2 * pi) <$> get
put gen'
let (x', y') = (x + s * cos a, y + s * sin a)
if x' < 0 || x' > 1 || y' < 0 || y' > 1
then return Nothing
else return $ Just (x', y')
Something like evalState (lastJustM (randomStep 0.01) (0.5, 0.5)) <$> newStdGen will give us a new data point.
lastJustM = fix (liftM2 ap ((>>=) .) . (flip (maybe . return) .)). (OK I cheated withpointfree.) – KennyTM May 18 '10 at 18:30pointfreebecause I had no idea it would be able to handle this kind of thing. Now I just have to figure out how it works. – Travis Brown May 18 '10 at 18:43pointfreeuses. Of course, the result may or may not be useful :) – Antal S-Z May 18 '10 at 19:25pointfreeis "pointless style". And is thatliftM2working in the((->) r)monad? That always improves the clarity of code... – C. A. McCann May 19 '10 at 0:38fixis that it has no semantic value other than "crash the program if I messed up". The value of things likemapandfoldis that, as long as you don't left fold an infinite list, they perfectly define the operation they perform and won't lead you astray. – C. A. McCann May 19 '10 at 4:07