Add Variant::IsType
The Variant
class was missing a way to check the type. You could do it
indirectly using variant.GetIndex() == variant.GetIndexOf<T>()
, but
having this convenience function is more clear.
System updates will be applied on Nov 25th between 7am and 9am, EST (UTC-05:00). This site will have intermittent downtime during that time.
The Variant
class was missing a way to check the type. You could do it
indirectly using variant.GetIndex() == variant.GetIndexOf<T>()
, but
having this convenience function is more clear.