On Thursday, 24 June 2021 at 01:36:47 UTC, Ali Çehreli wrote:

      import std.algorithm;
      lnumRange.sort!(r"a > b"c);
      return lnumRange;

The above works OK. Funny thing indeed, at least to me, totally unexpected.

```d
return lnumRange.sort!(r"a > b"c); /// does not work

return lnumRange.sort!(r"a > b"c).release(); /// works
```

Intuitive ? Not a bit LoL ! (not complaining at all, just making fun of it)

Reply via email to