Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: Moose and File::Temp

by tobyink (Canon)
on Nov 19, 2012 at 14:05 UTC ( [id://1004544]=note: print w/replies, xml ) Need Help??


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

You may have some difficulty with isa => 'FileHandle' because while FileHandle is a core Perl module, Moose uses the type constraint string "FileHandle" to refer to unblessed Perl file handles - i.e. not objects created by the FileHandle package.

open my $fh , "<", "temp.txt"; $self->fh($fh); while (<$fh>) { print $_; }
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^3: Moose and File::Temp
by gsiglet (Acolyte) on Nov 19, 2012 at 14:26 UTC
    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>) { ... }
      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://1004544]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2025-11-07 15:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your view on AI coding assistants?





    Results (65 votes). Check out past polls.

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.