Re: Sort using Uniform call syntax

2016-03-14 Thread Jonathan M Davis via Digitalmars-d-learn
On Monday, March 14, 2016 11:27:30 Ali Çehreli via Digitalmars-d-learn wrote: > On 03/14/2016 06:56 AM, Jonathan M Davis via Digitalmars-d-learn wrote: > > On Monday, March 14, 2016 04:14:26 Ali Çehreli via Digitalmars-d-learn wrote: > >> On 03/14/2016 04:01 AM, Jerry wrote: > >> > I have a smal

Re: Sort using Uniform call syntax

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 06:56 AM, Jonathan M Davis via Digitalmars-d-learn wrote: On Monday, March 14, 2016 04:14:26 Ali Çehreli via Digitalmars-d-learn wrote: On 03/14/2016 04:01 AM, Jerry wrote: > I have a small problem with using UCS when sorting arrays. This pops a > warning telling me to use the

Re: Sort using Uniform call syntax

2016-03-14 Thread Jonathan M Davis via Digitalmars-d-learn
On Monday, March 14, 2016 04:14:26 Ali Çehreli via Digitalmars-d-learn wrote: > On 03/14/2016 04:01 AM, Jerry wrote: > > I have a small problem with using UCS when sorting arrays. This pops a > > warning telling me to use the algorithm sort instead of the property > > sort. Which I understand wh

Re: Sort using Uniform call syntax

2016-03-14 Thread Ali Çehreli via Digitalmars-d-learn
On 03/14/2016 04:01 AM, Jerry wrote: > I have a small problem with using UCS when sorting arrays. This pops a > warning telling me to use the algorithm sort instead of the property > sort. Which I understand why it works that way. However that means I can > not have syntactic sugar. So is there an

Sort using Uniform call syntax

2016-03-14 Thread Jerry via Digitalmars-d-learn
I have a small problem with using UCS when sorting arrays. This pops a warning telling me to use the algorithm sort instead of the property sort. Which I understand why it works that way. However that means I can not have syntactic sugar. So is there any way around this or do I just have to liv