On 11.08.19 18:11, DanielG wrote:
auto x = whatever[2].filter(x => x > 7); // error

You just forgot an exclamation mark here.

auto x = whatever[2].filter!(x => x > 7); // works

Reply via email to