Removed the given index from the array, if set.
auto compound = new Compound("", ["string", new String("test")]); assert("string" in compound); compound.remove("string"); assert("string" !in compound);
See Implementation
Removed the given index from the array, if set.