> I just had a look at eql (equality) because of the recursion there and > actually I'm not sure it should be there at all. By that logic you > would have to compare the properties of objects, too, which would > raise questions about recursion depth.
You're right. Object == Object doesn't work. Hm... It seems that the eql method should work that way though - all the way through, I mean. It should check to see if the pointers are equal. Since Arrays just hold pointers, it should technically just detect if the pointers are the same by their position in memory, something unavailable to us in AS. A few of the other methods rely on eql, so a solution has to be found. > Also, why not use strict inequality to compare the values? For example? _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

