[Haskell-cafe] MonadBaseControl IO instance for conduits ?

2013-10-11 Thread Aleksey Uymanov
ust be base for ConduitM) with MonadBaseControl IO. -- Aleksey Uymanov ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Announce: HDBI-1.2 and friends

2013-10-05 Thread Aleksey Uymanov
ass is 8.0 This is much more type safe way to work with raw SQL queries. Links: http://hackage.haskell.org/package/hdbi http://hackage.haskell.org/package/hdbi-postgresql http://hackage.haskell.org/package/hdbi-sqlite http://hackage.haskell.org/package/hdbi-conduit And you are welcome on GitHub: h

[Haskell-cafe] Value-weak hash tables in Haskell ?

2013-08-10 Thread Aleksey Uymanov
Hello, haskellers. Is there any package implementing magic hash tables weak in value? I mean when the value is garbage collected, then this key+value authomatically removes from the hash table. -- Aleksey Uymanov ___ Haskell-Cafe mailing list

Re: [Haskell-cafe] Quick-check: how to generate arbitrary complex data?

2013-07-13 Thread Aleksey Uymanov
ListA :: Gen ListA genOtherListA :: Gen OtherListA checkListA :: ListA -> Property checkOtherListA :: OtherListA -> Property prop1 = forAll genListA checkListA prop2 = forAll genOtherListA checkOtherListA -- Aleksey Uymanov ___ Haskell-Cafe mai

Re: [Haskell-cafe] how to debug stack overflow?

2013-06-22 Thread Aleksey Uymanov
On Sat, 22 Jun 2013 11:04:21 + (UTC) Johannes Waldmann wrote: > What is the recommended method Try to use heap profiling. There is very high probability that the problem is because of space leak. -- Aleksey Uymanov ___ Haskell-Cafe mail