[Issue 5250] Pure std.typecons.Tuple

2011-07-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5250


bearophile_h...@eml.cc changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED


--- Comment #2 from bearophile_h...@eml.cc 2011-07-14 17:30:20 PDT ---
Yay, fixed in DMD 2.054. Pure Tuples are useful in functional-style
programming.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 5250] Pure std.typecons.Tuple

2010-11-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5250



--- Comment #1 from bearophile_h...@eml.cc 2010-11-21 16:21:53 PST ---
The same is true for nothrow attribute:


import std.typecons: Tuple;
pure nothrow Tuple!int foo() {
return Tuple!int(0);
}
void main() {
assert(foo()[0] == 0);
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---