Am Thu, 14 Mar 2013 22:15:11 +0100 schrieb "bearophile" <bearophileh...@lycos.com>:
> Andrea Fontana: > > > But does sort!"a<b" still work if it returns an array? > > See the difference in syntax: > > a < b > a[] < b[] > > Bye, > bearophile This is "just" a syntax ambiguity. a[] takes the complete slice of the array 'a'. And a dynamic array in D is a slice. So if you use a or a[] in an expression doesn't make much of a difference. -- Marco