Re: [Haskell-cafe] Parsec and Text

2011-10-09 Thread Yves Parès
Yes, thanks ! When I saw it, I wondered if Antoine added the instance for Stream Text because of my question ;) The thing is that it adds a dependency to parsec, but since Text is more efficient than String it might not me much of a congestion. 2011/10/9 Ozgur Akgun ozgurak...@gmail.com Hi.

[Haskell-cafe] Parsec and Text

2011-10-08 Thread Yves Parès
Hallo Café, Is there a package that allows parsing Text with parsec, or do you have to switch to attoparsec-text or convert your Text to a ByteString? Thanks! ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org

Re: [Haskell-cafe] Parsec and Text

2011-10-08 Thread Antoine Latter
On Sat, Oct 8, 2011 at 12:37 PM, Yves Parès limestr...@gmail.com wrote: Hallo Café, Is there a package that allows parsing Text with parsec, or do you have to switch to attoparsec-text or convert your Text to a ByteString? I haven't tested it, but this declaration should work: instance

Re: [Haskell-cafe] Parsec and Text

2011-10-08 Thread Ozgur Akgun
Hi. See the following for the recent announcement: http://permalink.gmane.org/gmane.comp.lang.haskell.general/18972 On 8 October 2011 18:37, Yves Parès limestr...@gmail.com wrote: Is there a package that allows parsing Text with parsec, ... HTH, Ozgur