Re: Holding File handles in a {} anonymous hash

2003-10-09 Thread Rob Dixon
Rob Dixon wrote: > > Dan Anderson wrote: > > > > I have a module that works with a couple of different file handles. Is > > it possible to hide them within an anonymous hash? {} (i.e. the objects > > data). Right now I have: > > > > if (condition_is_met()) { > > open("FILE"," > } > > > > This

Re: Holding File handles in a {} anonymous hash

2003-10-07 Thread Rob Dixon
Wiggins D'Anconia wrote: > > Dan Anderson wrote: > > > I have a module that works with a couple of different file handles. Is > > it possible to hide them within an anonymous hash? {} (i.e. the objects > > data). Right now I have: > > > > if (condition_is_met()) { > > open("FILE"," > } > > > >

RE: Holding File handles in a {} anonymous hash

2003-10-07 Thread Roberts Mr Richard L
Tuesday, October 07, 2003 3:44 PM To: [EMAIL PROTECTED] Subject: Re: Holding File handles in a {} anonymous hash Dan Anderson wrote: > I have a module that works with a couple of different file handles. Is > it possible to hide them within an anonymous hash? {} (i.e. the objects > data).

Re: Holding File handles in a {} anonymous hash

2003-10-07 Thread Rob Dixon
Dan Anderson wrote: > I have a module that works with a couple of different file handles. Is > it possible to hide them within an anonymous hash? {} (i.e. the objects > data). Right now I have: > > if (condition_is_met()) { > open("FILE"," } > > This is in the main body of my package (and thus

RE: Holding File handles in a {} anonymous hash

2003-10-07 Thread Wiggins d'Anconia
On Tue, 07 Oct 2003 15:22:34 -0400, Dan Anderson <[EMAIL PROTECTED]> wrote: > I have a module that works with a couple of different file handles. Is > it possible to hide them within an anonymous hash? {} (i.e. the objects > data). Right now I h