[Issue 7260] g on default in std.regex

2013-09-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 Dmitry Olshansky dmitry.o...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 7260] g on default in std.regex

2013-08-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #10 from Dmitry Olshansky dmitry.o...@gmail.com 2013-08-17 05:33:49 PDT --- The problem now should is addressed by this pull https://github.com/D-Programming-Language/phobos/pull/1470 There is matchAll/matchFirst calls now that

[Issue 7260] g on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #6 from Dmitry Olshansky dmitry.o...@gmail.com 2013-03-10 10:43:30 PDT --- (In reply to comment #4) If changing std.regex.regex is not possible, then an alternative solution is to introduce the new little function std.regex.re,

[Issue 7260] g on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #7 from bearophile_h...@eml.cc 2013-03-10 11:09:31 PDT --- (In reply to comment #5) match(someString, pattern).all //range of all matches match(someString, pattern).first //only the first one match(someString, pattern) // using

[Issue 7260] g on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #8 from Dmitry Olshansky dmitry.o...@gmail.com 2013-03-10 11:54:55 PDT --- (In reply to comment #7) (In reply to comment #5) match(someString, pattern).all //range of all matches match(someString, pattern).first //only the

[Issue 7260] g on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #9 from Dmitry Olshansky dmitry.o...@gmail.com 2013-03-10 12:38:45 PDT --- (In reply to comment #8) Then once g is off we could either make .all a nop. Alternative is to make it opaque object that has 2 methods only

[Issue 7260] g on default in std.regex

2013-01-25 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #5 from Dmitry Olshansky dmitry.o...@gmail.com 2013-01-25 12:22:46 PST --- (In reply to comment #4) If changing std.regex.regex is not possible, then an alternative solution is to introduce the new little function std.regex.re,

[Issue 7260] g on default in std.regex

2013-01-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 bearophile_h...@eml.cc changed: What|Removed |Added Summary|g on default in |g on default in std.regex