On Wednesday, 20 November 2013 at 10:54:31 UTC, evilrat wrote:
On Wednesday, 20 November 2013 at 10:49:19 UTC, seany wrote:is typedef gone? http://forum.dlang.org/thread/aqsjjrtzfzslcopab...@forum.dlang.org?page=2so If I want to define a new type as typedef string[] surrealNumber, then it does not work?it is replaced with alias.so for ur case this would looks like "alias string[] surrealNumber;" or "alias surrealNumber = string[];"
Those are not equivalent. Alias does not create new type.