Compound.remove

Removed the given index from the array, if set.

class Compound
@safe
void
remove
(
string name
)

Examples

auto compound = new Compound("", ["string", new String("test")]);
assert("string" in compound);
compound.remove("string");
assert("string" !in compound);

Meta