in reply to The Null Mull (or, when OO needs more O)

Everyone has probably experienced the pain and frustration of something in their script trying to call a method on something that isn't a reference.
$ perl -e '1->method'
As an aside, I stumbled across a module on CPAN just yesterday, which would seem to make this possible: Scalar::Properties.

Replies are listed 'Best First'.
Re^2: The Null Mull (or, when OO needs more O)
by drewbie (Chaplain) on Nov 29, 2004 at 17:25 UTC
    Scalar::Properties looks wickedly neat from a quick glance at the docs. Has anyone used it in production code?