Check whether the type of that matches the type of other instance.
that
other
We check with is* function. Hence, if the class of other is a subclass of the class of that, we confirm the match.
is*
standard instance
instance whose type is compared against that
Generated using TypeDoc
Check whether the type of
that
matches the type ofother
instance.Remarks
We check with
is*
function. Hence, if the class ofother
is a subclass of the class ofthat
, we confirm the match.