bool set[char[]];
//Stuff
char[][] words = set.keys;It gives the error:Error: cannot implicitly convert expression (set.keys()) of type const(char)[][] to char[][]
and I'm not sure why I can't copy const data to normal data.
bool set[char[]];
//Stuff
char[][] words = set.keys;It gives the error:Error: cannot implicitly convert expression (set.keys()) of type const(char)[][] to char[][]
and I'm not sure why I can't copy const data to normal data.