Newest at the top
2025-04-03 19:47:25 +0200 | sim590 | (~simon@209-15-185-101.resi.cgocable.ca) |
2025-04-03 19:45:57 +0200 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds) |
2025-04-03 19:44:50 +0200 | Tuplanolla | (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) Tuplanolla |
2025-04-03 19:40:49 +0200 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
2025-04-03 19:38:33 +0200 | inca | (~inca@syn-150-221-047-017.biz.spectrum.com) |
2025-04-03 19:37:27 +0200 | EvanR | moves it all to Prelude |
2025-04-03 19:35:56 +0200 | <monochrom> | I also wouldn't mind Text.Data.Text.Data |
2025-04-03 19:35:54 +0200 | ft | (~ft@p508db463.dip0.t-ipconnect.de) ft |
2025-04-03 19:35:36 +0200 | <monochrom> | But I'm up for renaming Data.Text to Text.Data.Text hehe |
2025-04-03 19:35:05 +0200 | <monochrom> | In fact, the text package says Data.Text rather than Text. |
2025-04-03 19:34:48 +0200 | <monochrom> | It's base, even though the module name says "Text". |
2025-04-03 19:34:25 +0200 | <enikar> | ReadP is in base, anyway |
2025-04-03 19:32:39 +0200 | <EvanR> | is that in base or the text package |
2025-04-03 19:32:37 +0200 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 248 seconds) |
2025-04-03 19:32:21 +0200 | <lambdabot> | Text.ParserCombinators.ReadP.ReadP Text.Read.Lex.Lexeme |
2025-04-03 19:32:19 +0200 | <EvanR> | :t Text.Read.Lex.lex |
2025-04-03 19:32:07 +0200 | <int-e> | I just didn't know that () is an exception to the rule. |
2025-04-03 19:31:32 +0200 | <int-e> | EvanR: right, and a lot of (most?) non-derived instances too (the instance for Int isn't derived either) |
2025-04-03 19:31:00 +0200 | <monochrom> | It was a simpler time. :) |
2025-04-03 19:30:33 +0200 | <EvanR> | instead of something more efficient for that type |
2025-04-03 19:30:31 +0200 | sim590 | (~simon@209-15-185-101.resi.cgocable.ca) (Client Quit) |
2025-04-03 19:30:17 +0200 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds) |
2025-04-03 19:30:11 +0200 | wootehfoot | (~wootehfoo@user/wootehfoot) wootehfoot |
2025-04-03 19:30:09 +0200 | tromp | (~textual@2001:1c00:3487:1b00:c12c:62c3:725c:e71d) (Ping timeout: 260 seconds) |
2025-04-03 19:29:42 +0200 | <EvanR> | so all the derived Read instances use lex, and then process the result? |
2025-04-03 19:29:36 +0200 | <int-e> | You'll probably agree that Int isn't String either. |
2025-04-03 19:29:12 +0200 | sim590 | (~simon@209-15-185-101.resi.cgocable.ca) |
2025-04-03 19:28:58 +0200 | simon1 | (~simon@209-15-185-101.resi.cgocable.ca) (Client Quit) |
2025-04-03 19:28:55 +0200 | <int-e> | EvanR: I tested two things. I expected () to fail the same way that Int does, I was wrong. |
2025-04-03 19:28:45 +0200 | <EvanR> | () is not string |
2025-04-03 19:28:37 +0200 | <EvanR> | nor () |
2025-04-03 19:28:28 +0200 | <int-e> | EvanR: well Int is not String |
2025-04-03 19:28:16 +0200 | <EvanR> | not () |
2025-04-03 19:28:09 +0200 | <EvanR> | oh you were probing the String parser |
2025-04-03 19:28:00 +0200 | <int-e> | which recognizes Haskell-like tokens. And that includes string literals. |
2025-04-03 19:27:44 +0200 | lxsameer | (~lxsameer@Serene/lxsameer) lxsameer |
2025-04-03 19:27:41 +0200 | <int-e> | derived read instances are built on top of Text.Read.Lex.lex |
2025-04-03 19:27:23 +0200 | <lambdabot> | "hello" |
2025-04-03 19:27:21 +0200 | <monochrom> | > read "\"hello\"" :: String |
2025-04-03 19:27:17 +0200 | <EvanR> | ? |
2025-04-03 19:27:12 +0200 | <int-e> | EvanR: ^ |
2025-04-03 19:27:01 +0200 | <int-e> | it initiates a string token |
2025-04-03 19:27:01 +0200 | <monochrom> | Neat. |
2025-04-03 19:26:58 +0200 | <lambdabot> | () |
2025-04-03 19:26:57 +0200 | <monochrom> | > read "((( (( ))) ) )" :: () |
2025-04-03 19:26:45 +0200 | <EvanR> | what's with the initial double quote |
2025-04-03 19:26:36 +0200 | <lambdabot> | () |
2025-04-03 19:26:35 +0200 | ubert | (~Thunderbi@2a02:8109:ab8a:5a00:a8be:5729:753e:3d1c) (Quit: ubert) |
2025-04-03 19:26:35 +0200 | <lambdabot> | *Exception: Prelude.read: no parse |
2025-04-03 19:26:34 +0200 | <monochrom> | > read "((((()))))" :: () |