NAME
PICA::Parser::Plus - PICA+ format parser
VERSION
version 0.07
SYNOPSIS
PICA::Parser::Plus is a parser for PICA+ records.
use PICA::Parser::Plus;
my $parser = PICA::Parser::Plus->new( $filename );
while ( my $record_hash = $parser->next() ) {
# do something
}
SUBROUTINES/METHODS
new
next()
Reads the next record from PICA+ XML input stream. Returns a Perl hash.
_decode()
Deserialize a PICA+ record to an array of field arrays.
SEEALSO
PICA::PlainParser, included in the release of PICA::Record implements another PICA+ format parser, not aligned with the Catmandu framework.
AUTHOR
Johann Rolschewski <rolschewski@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Johann Rolschewski.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.