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
thatmatches the type ofotherinstance.Remarks
We check with
is*function. Hence, if the class ofotheris a subclass of the class ofthat, we confirm the match.