[Haskell-cafe] 1G strings in Haskell

2006-04-20 Thread Donald Bruce Stewart
Question: Can I manipulate 1G strings in Haskell? Short answer: Yes! Mostly. Doing some stress testing of FPS, here are some results for 1G strings. 3.2Ghz box, 2G physical mem. Size of input string: 1G N.B. 2G of physical ram is not enough when trying to benchmark functions that copy

Re: [Haskell-cafe] 1G strings in Haskell

2006-04-20 Thread Donald Bruce Stewart
dagit: On 4/19/06, Donald Bruce Stewart [EMAIL PROTECTED] wrote: Question: Can I manipulate 1G strings in Haskell? Failed due to memory exhaustion. Almost made it though, just need a tad more ram than I had. filter ! unlines ! unwords !

Re[2]: [Haskell-cafe] Advice needed on best way to simulate an STL vector

2006-04-20 Thread Bulat Ziganshin
Hello Brian, Thursday, April 20, 2006, 12:36:12 AM, you wrote: Thanks for the link. On the wiki, all the links I found point to old documentation ie docs/latest/html/libraries instead of dist/current/docs/libraries. the first link is for STABLE version (6.4), the second for the HEAD (i.e.

[Haskell-cafe] Spawning a terminal window?

2006-04-20 Thread ihope
Does Haskell have a handy way to spawn a new terminal window and give you a handle to access it with? --ihope ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] C++ parser in Haskell?

2006-04-20 Thread Marc Weber
On Wed, Apr 19, 2006 at 11:01:03PM +0200, Christophe Poucet wrote: For the parsing and lexing I used happy and alex. Jake Luck wrote: I would be very interested in this as well. I have looked myself but haven't found anything else. I wrote one myself in Haskell but for a subset of C++