in reply to Re: Overload abuse or is it just me?
in thread Overload abuse or is it just me?

Do you mean that your classes were using overload and other modules like Class::DBI ended up using your overloaded operators (thus, causing bugs)?

That's interesting, and it's also another good reason not to use overload.

Replies are listed 'Best First'.
Re^3: Overload abuse or is it just me?
by perrin (Chancellor) on Mar 17, 2006 at 19:32 UTC
    No, that isn't what I mean. I mean that using objects from other classes in a specific context would give unexpected results because of overloads on conversion to strings or numbers.
      Oh, I got it... So you mean, for example, Class::DBI overloading "" to return the ID of the object, right? Thanks.
        That's right.