public template TaggedType(T)

Gets the underlying type whitch a Tag wraps. If T is not a Tag it will alias itself to T.

Example

static assert(is(
  TaggedType!(Tag!("Tag", int)) == int
));
static assert(is(
  TaggedType!int == int
));