Heinz wrote:
> Hi,
>
> I just want to know what type is the one returned by the .length property of an array.
>
> Thanks.
When in doubt, find out!
import std.stdio;
void main()
{
char[] foo;
writefln("typeof(array.length) == %s", typeid(typeof(foo.length)));
}