Jian Fan wrote:
> Following is what I have for now...

Oh, nice! That is simpler. Now we can do:

searchTree pred rootLoc
 | pred (getLabel rootLoc) = Just rootLoc
 | otherwise               = search right `mplus` search firstChild
 where
   search next = next rootLoc >>= searchTree pred

Regards,
Yitz
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to