On Wednesday, 6 June 2018 at 13:44:09 UTC, Flaze07 wrote:
sort( arr.Range );don't work, it says cannot pass RangeT!(Array!uint) as function argument
Range is the type, you want the value I think you can do sort(arr[]) maybe
Adam D. Ruppe via Digitalmars-d-learn Wed, 06 Jun 2018 06:51:25 -0700
On Wednesday, 6 June 2018 at 13:44:09 UTC, Flaze07 wrote:
sort( arr.Range );don't work, it says cannot pass RangeT!(Array!uint) as function argument
Range is the type, you want the value I think you can do sort(arr[]) maybe