[Issue 9012] writef/format inconsistent with format specifier

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9012 --- Comment #3 from Andrej Mitrovic andrej.mitrov...@gmail.com 2012-11-24 01:40:39 PST --- (In reply to comment #2) std.string.xformat is the function that's compatible with std.format. We really should deprecate std.string.format or

[Issue 9069] New: struct literals are treated as lvalues

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9069 Summary: struct literals are treated as lvalues Product: D Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2

[Issue 9069] struct literals are treated as lvalues

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9069 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|

[Issue 9069] struct literals are treated as lvalues

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9069 --- Comment #2 from Jonathan M Davis jmdavisp...@gmx.com 2012-11-24 03:13:58 PST --- It was discussed in the thread on const ref in the dmd-beta group during the preparations for releasing 2.060, and I think that it was fixed and then unfixed

[Issue 9069] struct literals are treated as lvalues

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9069 --- Comment #3 from Kenji Hara k.hara...@gmail.com 2012-11-24 05:42:18 PST --- (In reply to comment #2) It was discussed in the thread on const ref in the dmd-beta group during the preparations for releasing 2.060, and I think that it was

[Issue 9071] New: sort function won't compile but Range fits describtion

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9071 Summary: sort function won't compile but Range fits describtion Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2

[Issue 9069] struct literals are treated as lvalues

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9069 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Keywords||pull

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|

[Issue 9064] Add isInstanceOf to std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9064 --- Comment #2 from github-bugzi...@puremagic.com 2012-11-24 09:56:17 PST --- Commits pushed to master at https://github.com/D-Programming-Language/phobos

[Issue 9064] Add isInstanceOf to std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9064 Alex R�nne Petersen a...@lycus.org changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 --- Comment #2 from Manu turkey...@gmail.com 2012-11-24 10:59:39 PST --- (In reply to comment #1) (In reply to comment #0) template isInstanceOf(alias T, I) { ... } That one is now in Phobos:

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 David Nadlinger c...@klickverbot.at changed: What|Removed |Added CC|

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 --- Comment #4 from Manu turkey...@gmail.com 2012-11-24 11:48:53 PST --- (In reply to comment #3) For the second point, what about is(T == function)? The is() syntax is not very popular (rightfully so), but I am not sure if we have a

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 --- Comment #5 from David Nadlinger c...@klickverbot.at 2012-11-24 11:51:44 PST --- (In reply to comment #4) Does that not test if T is some sort of function pointer? ...actually, that's some sort of special case overloaded meaning of the

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 Jonathan M Davis jmdavisp...@gmx.com changed: What|Removed |Added CC|

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 --- Comment #7 from Manu turkey...@gmail.com 2012-11-24 14:35:53 PST --- (In reply to comment #6) is(T == function) actually tests whether T is the type of a function, not whether it's a function pointer. This stackoverflow question discusses

[Issue 4427] __traits should have isFunction, isVariable, etc

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4427 Manu turkey...@gmail.com changed: What|Removed |Added CC||turkey...@gmail.com ---

[Issue 8733] Normalize -of path on Windows

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8733 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added Keywords||pull ---

[Issue 8819] void static array should have init built-in propert

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8819 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Keywords||pull --- Comment #1

[Issue 9065] Please consider adding these std.traits

2012-11-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9065 --- Comment #9 from Jonathan M Davis jmdavisp...@gmx.com 2012-11-24 20:35:26 PST --- Looking at that link, what's with all the typeof(bar) stuff? Do those tempaltes not work by alias? Surely I should be able to say isSomeFunction!bar, not