Creates a named tag. The first argument of the constructor becomes a string (the name) and rest doesn't change.
auto tag = new Named!Int("name", 12); assert(tag.named); assert(tag.name == "name"); assert(tag.value == 12); assert(tag == new Int(12));
See Implementation
Creates a named tag. The first argument of the constructor becomes a string (the name) and rest doesn't change.