Bug 4971 – to!() fails with static arrays

Status
RESOLVED
Resolution
FIXED
Severity
enhancement
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
Other
OS
Linux
Creation time
2010-10-01T22:54:00Z
Last change time
2015-06-09T05:14:59Z
Assigned to
andrei
Creator
issues.dlang

Comments

Comment #0 by issues.dlang — 2010-10-01T22:54:00Z
This code fails to compile import std.conv; import std.stdio; void main() { dchar[7] numStr = "1234567"; writeln(to!long(numStr)); } with this error /home/jmdavis/Downloaded_Files/dmd/dmd2/linux/bin/../../src/phobos/std/conv.d(95): Error: template std.conv.toImpl(T,S) if (!implicitlyConverts!(S,T) && isSomeString!(T) && isInputRange!(Unqual!(S)) && isSomeChar!(ElementType!(S))) toImpl(T,S) if (!implicitlyConverts!(S,T) && isSomeString!(T) && isInputRange!(Unqual!(S)) && isSomeChar!(ElementType!(S))) matches more than one template declaration, /home/jmdavis/Downloaded_Files/dmd/dmd2/linux/bin/../../src/phobos/std/conv.d(217):toImpl(T,S) if (isStaticArray!(S)) and /home/jmdavis/Downloaded_Files/dmd/dmd2/linux/bin/../../src/phobos/std/conv.d(588):toImpl(T,S) if ((is(S : const(wchar)[]) || is(S : const(dchar)[])) && !isSomeString!(T)) If you use numStr[] instead of numStr, it works. But I see no reason why to!() can't be made to work with a static array. Ideally, it would either turn it into a const ref or a dynamic slice itself, thus avoiding creating a copy, but right now it just fails. Maybe that's just how things go with static arrays, but it seems overly restrictive in this case. to!() shouldn't _need_ a dynamically allocated array.
Comment #1 by issues.dlang — 2011-06-11T20:06:18Z
Comment #2 by k.hara.pg — 2011-08-31T21:36:54Z
std.conv.to now support static array conversion, it is treated as dynamic array.