Compound.names

Gets the keys (indexes of the array).

class Compound
@property pure nothrow @safe @nogc
string[]
names
()

Examples

assert(new Compound("", ["a": new String("a"), "b": new String("b")]).keys == ["a", "b"]);

Meta