Checks if the type is instance of tagged Algebraic.
Tagged algebraics can be defined with TaggedVariant.
static assert(!isTaggedVariant!int); static assert(!isTaggedVariant!(Variant!(int, string))); static assert(isTaggedVariant!(TaggedVariant!(["integer", "string"], int, string)));
See Implementation
Checks if the type is instance of tagged Algebraic.
Tagged algebraics can be defined with TaggedVariant.