On 02/05/2010 11:54 PM, Jonathan Worthington wrote:
If you want to check if A inherits from B, do A.isa(B). If you want to check if A does B, do A.does(B). If you just care if A is somehow a subtype of B, but don't care why, do A ~~ B. Much of the time, the last of these is the important one.
This is great information. The kind of information that I am sure can be found in the Synopsis, but not so clearly explained and summarized in just one point. I will start experimenting with it. Thanks *a lot*
---Beppe---