-----Original Message-----
From: raptor
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: 7/13/01 10:19 AM
Subject: Re: nice2haveit
> > Two things i think is good to have it :
> >
> > 1. ALIAS keyword.
> > - first reason is 'cause many people don't know that this is
possible.. at
> > least any newscommer and it will help not to forgot that it exist
:").
> > - Code become more readable.
> > - can be Overloaded
> > - the syntax for aliasing can become reicher :")
>
> Would you like to clarify what you mean here.
> Are you talking about typeglob assignments?
> Perl 6 will have:
>
> $Foo::{'$bar'} = \$baz; # Alias $Foo::bar to $baz
]- Can I see more examples of typeglob assignment somewhere ? link ?
>I mean something like this :
>instead of :
>#$Request->{Params}
>local *myhash = \%{$$Request{Params}};
Wouldn't that do the same as
my $myhash = ($request{Params});
I know that is actually copying value, but I believe the above does too?
Ilya
>my %myhash alias %{$$Request{Params}};#see - it is my (now as far as I
>know
>u can't have it 'my')
>=====
>iVAN
>[EMAIL PROTECTED]
>=====