Re: Win32::TieRegistry or Perl problem (?)]

2005-03-02 Thread Linda W
A. Pagaltzis wrote: * Linda W <[EMAIL PROTECTED]> [2005-03-02 01:20]: As it is, TieRegistry certainly seems to have problems reliably accessing values under keynames where the keynames are not ascii strings. [...] something in the registry export feature doesn't quite translate the keynames the sam

Re: Parallel::Simple - bound args syntax

2005-03-02 Thread Ofer Nave
Buddy Burden wrote: Ofer, In my case, it's much easier to pick off the first entry than the list. Why? my $opts = @_ && ref $_[-1] eq 'HASH' ? pop : {}; my ($proj, @files) = @_; (from some code of mine; I have many functions defined like this) -- Buddy Ok, fine. That was a total b

Re: Parallel::Simple - bound args syntax

2005-03-02 Thread Buddy Burden
Ofer, In my case, it's much easier to pick off the first entry than the list. Why? my $opts = @_ && ref $_[-1] eq 'HASH' ? pop : {}; my ($proj, @files) = @_; (from some code of mine; I have many functions defined like this) -- Buddy

Re: Parallel::Simple - bound args syntax

2005-03-02 Thread Ofer Nave
A. Pagaltzis wrote: * Ofer Nave <[EMAIL PROTECTED]> [2005-03-02 03:55]: I hate to force people to create an anonymous hash when it can be implied. Plus I'm already checking for hashref as the first param to allow options to be specified, so I'd have to change that... to what, I don't know.