[Haskell-cafe] Examples of MVars usage

2013-06-12 Thread Francisco M. Soares Nt.
Hello, everyone. I am looking for packages on hackage which use MVars extensively. Those which create plenty of MVars -- not just one or two for conditional synchronization or to keep track of a value throughout the program. My purpose is to analyze usage patterns of MVars. Does anybody have any

Re: [Haskell-cafe] Examples of MVars usage

2013-06-12 Thread lucas di cioccio
Hi Francisco, You can try GitHub's code search https://github.com/search?l=Haskellq=mvarref=cmdformtype=Code Cheers, --Lucas 2013/6/12 Francisco M. Soares Nt. xfrancisco.soa...@gmail.com Hello, everyone. I am looking for packages on hackage which use MVars extensively. Those which create

Re: [Haskell-cafe] Examples of MVars usage

2013-06-12 Thread Bas van Dijk
On 12 June 2013 21:29, Francisco M. Soares Nt. xfrancisco.soa...@gmail.com wrote: I am looking for packages on hackage which use MVars extensively. Those which create plenty of MVars Hi Francisco, Also take a look at Control.Concurrent.Chan in the base library:

Re: [Haskell-cafe] Examples of MVars usage

2013-06-12 Thread Francisco M. Soares Nt.
First of all, thank you for your suggestions. You can try GitHub's code search For the moment I am ignoring Github because it's harder to separate stable development from unstable. Even so, it might be worth the trouble to check out github soon. Thank you, Lucas. Also take a look at