On 9/22/22 08:19, Ali Çehreli wrote:

> string noZeroes(string s)
> {
>      return s.byCodeUnit.filter!(c => c != '\0');
> }

That won't compile; the return type must be 'auto'.

Ali


Reply via email to