While trying to use Array!bool I noticed this: import std.container;
void main(){ Array!bool test; test[0]=false; } gives an assertion failure without any information. Also, why on earth can't I instantiate array!bool with a given length?
While trying to use Array!bool I noticed this: import std.container;
void main(){ Array!bool test; test[0]=false; } gives an assertion failure without any information. Also, why on earth can't I instantiate array!bool with a given length?