obj is Foo
Returns if the left operand is an instance of the right operand. If an object is an instanceof a class's superclass, this operator will return true for the superclass.
// Where: Dog IS-A Animal let o := Dog { ... } o is Animal
Last updated 5 years ago
Was this helpful?