NAME PYX::Sort - Processing PYX data or file and sort element attributes. SYNOPSIS use PYX::Sort; my $obj = PYX::Sort->new(%parameters); $obj->parse($pyx, $out); $obj->parse_file($input_file, $out); $obj->parse_handler($input_file_handler, $out); METHODS "new" my $obj = PYX::Sort->new(%parameters); Constructor. * "output_handler" Output handler. Default value is \*STDOUT. Returns instance of object. "parse" $obj->parse($pyx, $out); Parse PYX text or array of PYX text and print sorted list of element attributes in PYX format. If $out not present, use 'output_handler'. Returns undef. "parse_file" $obj->parse_file($input_file, $out); Parse file with PYX data and print sorted list of element attributes in PYX format. If $out not present, use 'output_handler'. Returns undef. "parse_handler" $obj->parse_handler($input_file_handler, $out); Parse PYX handler print sorted list of element attributes in PYX format. If $out not present, use 'output_handler'. Returns undef. ERRORS new(): From Class::Utils::set_params(): Unknown parameter '%s'. EXAMPLE use strict; use warnings; use PYX::Sort; # Example data. my $pyx = <<'END'; (tag Aattr3 value Aattr2 value Aattr1 value -text )tag END # PYX::Sort object. my $obj = PYX::Sort->new; # Parse. $obj->parse($pyx); # Output: # (tag # Aattr1="value" # Aattr2="value" # Aattr3="value" # -text # )tag DEPENDENCIES Class::Utils, PYX::Parser. SEE ALSO Task::PYX Install the PYX modules. REPOSITORY AUTHOR Michal Josef Špaček LICENSE AND COPYRIGHT © 2011-2023 Michal Josef Špaček BSD 2-Clause License VERSION 0.05