The demise of T[new]

Leandro Lucarella llucax at gmail.com
Mon Oct 19 08:13:07 PDT 2009


Leandro Lucarella, el 19 de octubre a las 11:57 me escribiste:
> slice.dup should return an array.

To avoid making the language aware of the array type, slice.dup can be
removed and use an array constructor instead:

auto a = slice.dup;

should be:

auto a = array!T(slice);

This way, I think the language only have to know about slices.

-- 
Leandro Lucarella (AKA luca)                     http://llucax.com.ar/
----------------------------------------------------------------------
GPG Key: 5F5A8D05 (F8CD F9A7 BF00 5431 4145  104C 949E BFB6 5F5A 8D05)
----------------------------------------------------------------------
He cometido pecados, he hecho el mal, he sido víctima de la envidia, el
egoísmo, la ambición, la mentira y la frivolidad, pero siempre he sido
un padre argentino que quiere que su hijo triunfe en la vida.
	-- Ricardo Vaporeso



More information about the Digitalmars-d mailing list