Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^3: Moose and File::Temp

by gsiglet (Acolyte)
on Nov 19, 2012 at 14:26 UTC ( [id://1004549]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Moose and File::Temp
in thread Moose and File::Temp

So it is impossible to use  while(<$self->{IamAfileHandleAttribute}>) { ... } > to read a file, outside my constructor. I guess I will have to do:
my $temp_fh = $self->{IamAfileHandleAttribute}; while (<$temp_fh>) { ... }

Replies are listed 'Best First'.
Re^4: Moose and File::Temp
by tinita (Parson) on Nov 19, 2012 at 14:52 UTC
    So it is impossible to use while(<$self->{IamAfileHandleAttribute}>) { ... } > to read a file
    no, it's not really impossible. you can just use readline instead of the diamond operator.
    while (readline $self->{IamAfileHandleAttribute}) {

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1004549]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-04-19 20:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found