简体   繁体   中英

How to implement findM in Haskell?

Is there existing implementation for the following function? I couldn't find it on hoogle

findM :: Monad m => (a -> m Bool) -> [a] -> m (Maybe a)

Yes. From the package "extra", module Control.Monad.Extra

https://hackage.haskell.org/package/extra-1.6/docs/Control-Monad-Extra.html#v:findM

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM