Return whether this variant currently holds a TYPE value.
Declared in <bdlb_variant.h>
template<class TYPE>
bool
is() const;
TYPE must be the same as one of the types that this variant can hold. Note that TYPE must be specified explicitly, e.g., myValue.is<int>().
true if this variant currently holds a TYPE value, and false otherwise