RE: how do you do this in one step instead of two

2008-07-18 Thread Stewart Anderson
On Fri, Jul 18, 2008 at 12:26 AM, Stewart Anderson
<[EMAIL PROTECTED]> wrote:

>>
>
> push @hh, [$direction, $source];

>
> Is  that creating an  "anonymous reference"  ?
>


I think it's an anonymous array, not an anonymous reference.



-- 
Regards,
Jeff. - [EMAIL PROTECTED]


OK Thanks  :)

Stu



Information in this email including any attachments may be privileged, 
confidential and is intended exclusively for the addressee. The views expressed 
may not be official policy, but the personal views of the originator. If you 
have received it in error, please notify the sender by return e-mail and delete 
it from your system. You should not reproduce, distribute, store, retransmit, 
use or disclose its contents to anyone. Please note we reserve the right to 
monitor all e-mail communication through our internal and external networks. 
SKY and the SKY marks are trade marks of British Sky Broadcasting Group plc and 
are used under licence. British Sky Broadcasting Limited (Registration No. 
2906991), Sky Interactive Limited (Registration No. 3554332), Sky-In-Home 
Service Limited (Registration No. 2067075) and Sky Subscribers Services Limited 
(Registration No. 2340150) are direct or indirect subsidiaries of British Sky 
Broadcasting Group plc (Registration No. 2247735). All of the companies 
mentioned in this paragraph are incorporated in England and Wales and share the 
same registered office at Grant Way, Isleworth, Middlesex TW7 5QD.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




Re: how do you do this in one step instead of two

2008-07-17 Thread Paul Johnson
On Fri, Jul 18, 2008 at 12:11:51AM +0800, Jeff Peng wrote:
> On Fri, Jul 18, 2008 at 12:00 AM, Richard Lee <[EMAIL PROTECTED]> wrote:
> > is there way to do this in one step?
> >
> >  push @array, ($direction, $source);
> >
> >push @hh, [EMAIL PROTECTED]
> >
> >
> > push @hh \($direction,$source) doesn't seem to work.. or not the samething

That pushes references to the two scalars onto @hh.

> push @hh, [$direction, $source];

Doesn't quite do the same thing, unless there was the equivalent of
@array = () on the previous line.

-- 
Paul Johnson - [EMAIL PROTECTED]
http://www.pjcj.net

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




Re: how do you do this in one step instead of two

2008-07-17 Thread Gunnar Hjalmarsson

Jeff Peng wrote:

On Fri, Jul 18, 2008 at 12:26 AM, Stewart Anderson
<[EMAIL PROTECTED]> wrote:
> Jeff Peng wrote:

>

push @hh, [$direction, $source];


Is  that creating an  "anonymous reference"  ?


I think it's an anonymous array, not an anonymous reference.


A reference to an anonymous array, more exactly.

--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




Re: how do you do this in one step instead of two

2008-07-17 Thread Jeff Peng
On Fri, Jul 18, 2008 at 12:26 AM, Stewart Anderson
<[EMAIL PROTECTED]> wrote:

>>
>
> push @hh, [$direction, $source];

>
> Is  that creating an  "anonymous reference"  ?
>


I think it's an anonymous array, not an anonymous reference.



-- 
Regards,
Jeff. - [EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




RE: how do you do this in one step instead of two

2008-07-17 Thread Stewart Anderson

On Fri, Jul 18, 2008 at 12:00 AM, Richard Lee <[EMAIL PROTECTED]>
wrote:
> is there way to do this in one step?
>
>  push @array, ($direction, $source);
>
>push @hh, [EMAIL PROTECTED]
>
>
> push @hh \($direction,$source) doesn't seem to work.. or not the
samething
>

push @hh, [$direction, $source];


-- 
Regards,
Jeff. - [EMAIL PROTECTED]

Is  that creating an  "anonymous reference"  ? 

Ta 

Stewart  

  

Information in this email including any attachments may be privileged, 
confidential and is intended exclusively for the addressee. The views expressed 
may not be official policy, but the personal views of the originator. If you 
have received it in error, please notify the sender by return e-mail and delete 
it from your system. You should not reproduce, distribute, store, retransmit, 
use or disclose its contents to anyone. Please note we reserve the right to 
monitor all e-mail communication through our internal and external networks. 
SKY and the SKY marks are trade marks of British Sky Broadcasting Group plc and 
are used under licence. British Sky Broadcasting Limited (Registration No. 
2906991), Sky Interactive Limited (Registration No. 3554332), Sky-In-Home 
Service Limited (Registration No. 2067075) and Sky Subscribers Services Limited 
(Registration No. 2340150) are direct or indirect subsidiaries of British Sky 
Broadcasting Group plc (Registration No. 2247735). All of the companies 
mentioned in this paragraph are incorporated in England and Wales and share the 
same registered office at Grant Way, Isleworth, Middlesex TW7 5QD.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




Re: how do you do this in one step instead of two

2008-07-17 Thread Jeff Peng
On Fri, Jul 18, 2008 at 12:00 AM, Richard Lee <[EMAIL PROTECTED]> wrote:
> is there way to do this in one step?
>
>  push @array, ($direction, $source);
>
>push @hh, [EMAIL PROTECTED]
>
>
> push @hh \($direction,$source) doesn't seem to work.. or not the samething
>

push @hh, [$direction, $source];


-- 
Regards,
Jeff. - [EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




Re: how do you do this in one step instead of two

2008-07-17 Thread Jeff Peng
On Fri, Jul 18, 2008 at 12:00 AM, Richard Lee <[EMAIL PROTECTED]> wrote:
> is there way to do this in one step?
>
>  push @array, ($direction, $source);
>
>push @hh, [EMAIL PROTECTED]
>
>
> push @hh \($direction,$source) doesn't seem to work.. or not the samething
>

push @hh, [$direction, $source];


-- 
Regards,
Jeff. - [EMAIL PROTECTED]

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




how do you do this in one step instead of two

2008-07-17 Thread Richard Lee

is there way to do this in one step?

 push @array, ($direction, $source);

push @hh, [EMAIL PROTECTED]


push @hh \($direction,$source) doesn't seem to work.. or not the samething

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/