in reply to Re^2: Easy XML-parser that can handle large file?
in thread Easy XML-parser that can handle large file?
Nice.
In case you, or the reader, don't know: in handlers $_ is aliased to $_[1], so you can write ,$_->get_xpath(...) instead of $_[1]->get_xpath(...). Beyond saving 3 characters each time, I am used to $_ meaning "the current element" within a handler, and I find it easier to read.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Easy XML-parser that can handle large file?
by Discipulus (Canon) on Sep 12, 2014 at 07:42 UTC | |
by mirod (Canon) on Sep 12, 2014 at 08:30 UTC |