[Issue 5395] Interval literals

2016-10-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5395 Andrei Alexandrescu changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 5395] Interval literals

2016-10-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5395 --- Comment #8 from Andrei Alexandrescu --- I suggest converting this into a DIP if there's interest. --

[Issue 5395] Interval literals

2011-03-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5395 --- Comment #7 from bearophile_h...@eml.cc 2011-03-06 09:43:09 PST --- More comments: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.Darticle_id=131378 -- Configure issuemail:

[Issue 5395] Interval literals

2011-02-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5395 --- Comment #3 from bearophile_h...@eml.cc 2011-02-12 04:56:42 PST --- Michel Fortin: how do you rewrite this using the new proposed syntax: auto aa = [iota(a, b, c): 1, iota(d, e): 2]; -- Configure issuemail:

[Issue 5395] Interval literals

2011-02-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5395 --- Comment #4 from Denis Derman denis.s...@gmail.com 2011-02-12 05:36:01 PST --- (In reply to comment #3) Michel Fortin: how do you rewrite this using the new proposed syntax: auto aa = [iota(a, b, c): 1, iota(d, e): 2];

[Issue 5395] Interval literals

2011-02-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5395 --- Comment #5 from bearophile_h...@eml.cc 2011-02-12 14:53:19 PST --- Peter Alexander: auto foo = [ 1..10 : 2, 2..20 : 3 ]; Is foo an AA of ranges to ints, or an array of stepped ranges? Lazy strided intervals as associative array keys is

[Issue 5395] Interval literals

2011-02-12 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5395 --- Comment #6 from Denis Derman denis.s...@gmail.com 2011-02-12 23:35:51 PST --- (In reply to comment #3) Michel Fortin: how do you rewrite this using the new proposed syntax: auto aa = [iota(a, b, c): 1, iota(d, e): 2]; I