Re: Ivy.pm: name change? to upload on CPAN

2003-11-26 Thread Christophe MERTZ
On Tue, 2003-11-25 at 23:00, Tim Bunce wrote: Sadly it turns out to be not quite that trivial because the interface has this kind of style $obj-foo($bar); Ivy::foo($bar); I prepared a mail yesterday, but did not send it, where I was asking about this functiunal API. But you

more on Ivy.pm [was: Ivy.pm: name change]

2003-11-26 Thread Christophe MERTZ
On Tue, 2003-11-25 at 18:04, Tim Bunce wrote: On Tue, Nov 25, 2003 at 01:41:45PM +0100, Christophe MERTZ wrote: We are using at CENA (French Reserch Center for Air Traffic Control) a perl module called Ivy.pm for more than 5 years now, and this module is freely available since July 2000

Re: more on Ivy.pm [was: Ivy.pm: name change]

2003-11-26 Thread Tim Bunce
On Wed, Nov 26, 2003 at 09:10:11AM +0100, Christophe MERTZ wrote: On Tue, 2003-11-25 at 18:04, Tim Bunce wrote: (I'm disappointed the module isn't an interface to the C library.) Don't be disappointed... The gains would be minimal in our view. Not if you're trying to process hundreds or

RE: Ivy.pm: name change? to upload on CPAN

2003-11-26 Thread Orton, Yves
All functions in the module can be used as method; the trick used to do it is to use the __PACKAGE__ variable the following way: sub init { my $class = shift if (@_ and $_[0] eq __PACKAGE__); my (%options) = @_; ... } # or : sub bindRegexp { my $self = ref($_[0]) eq