Re: Temp properties

2001-08-23 Thread Damian Conway
John asked: > Can properties be temp()orarily masked? For example: > > foreach my $array (@arrays) > { > temp $array.sep = ', '; # assuming this is a real property > print "$array\n"; # prints "item1, item2, item3, ..." > } I would expect so,

Temp properties

2001-08-14 Thread John Siracusa
(I figured it'd take me longer to track this information down myself than it would to get a response from the list. Laziness... :) Can properties be temp()orarily masked? For example: foreach my $array (@arrays) { temp $array.sep = ', '; # assuming this is a real property p