The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

PICA::Writer::Plus - Normalized PICA+ format serializer

SYNOPSIS

    use PICA::Writer::Plus;

    my $fh = \*STDOUT; # filehandle or object with method print, e.g. IO::Handle
    my $writer = PICA::Writer::Plus->new( fh => $fh );

    foreach my $record (@pica_records) {
        $writer->write($record);
    }

MODULES

write ( @records )

Writes one or more records, given as hash with key 'record' or as array reference with a list of fields, as described in PICA::Data.

SEEALSO

The counterpart of this module is PICA::Parser::Plus.

See Catmandu::Exporter::PICA for usage of this module in Catmandu.

An alternative writer had been implemented as PICA::Writer included in the release of PICA::Record.