in reply to RE: Access to tied variable in the tie constructor???
in thread Access to tied variable in the tie constructor???

I know that I can pass additional arguments to the tie, but I don't think I should have to. In my example $t is already an argument to the tie call and I don't want to have to pass it again. IMHO it looks redundant and un-clean to require the user of the tie to pass the tie variable twice and have the code look like:
tie $t, 'TestTie', \$t;