I've some problems (again) with UTF-8. Try this code:
char[] chars = ['à','è','ì'];
chars.canFind('è');
It doesn't work:
std.utf.UTFException@std/utf.d(644): Invalid UTF-8 sequence (at index 1)
But this one works:
string[] chars = ["à","è","ì"];
chars.canFind("è");
I'm using dmd/druntime/phobos downloaded from github today.
