http://www.perlmonks.org?node_id=969130


in reply to Re^3: Blessing tied hash
in thread Blessing tied hash

thingy is what the reference points to, it may be hash, array, scalar, subroutine. What I'm saying, and what code demonstrates is that you can bless a hash, not just the reference as tobyink said.

Replies are listed 'Best First'.
Re^5: Blessing tied hash
by anazawa (Scribe) on May 06, 2012 at 13:29 UTC
    That makes sense. Although bless() requires a reference to the thingy, bless() makes the thingy blessed, not the reference itself. I didn't care this slight difference. In this context, to bless a tied hash, we pass the reference (to a tied hash) to bless().