in reply to Re: Psychic Disconnect and Object Systems
in thread Psychic Disconnect and Object Systems

I don't recall reading about accessor, just reader and writer.

So, the built-in 'new' logic and the application of default don't go through the normal set function, so lack of one doesn't bother it.

  • Comment on Re^2: Psychic Disconnect and Object Systems

Replies are listed 'Best First'.
Re^3: Psychic Disconnect and Object Systems
by ikegami (Patriarch) on Apr 18, 2011 at 02:33 UTC

    I don't recall reading about accessor, just reader and writer.

    $o->an_accessor('foo'); $foo = $o->an_accessor(); $o->a_writer('foo'); $foo = $o->a_reader();

    So, the built-in 'new' logic and the application of default don't go through the normal set function, so lack of one doesn't bother it.

    Correct.