slackbuilds/perl/perl-data-section-simple
Heinz Wiesinger 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-17 21:55:09 +02:00
..
README perl/perl-data-section-simple: Added (extracts data from __DATA__ section) 2020-01-12 08:48:01 +07:00
perl-data-section-simple.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
perl-data-section-simple.info perl/perl-data-section-simple: Added (extracts data from __DATA__ section) 2020-01-12 08:48:01 +07:00
slack-desc perl/perl-data-section-simple: Added (extracts data from __DATA__ section) 2020-01-12 08:48:01 +07:00

README

Data::Section::Simple is a simple module to extract data from "__DATA__"
section of a file.

As the name suggests, this module is a simpler version of the excellent
Data::Section. If you want more functionalities such as merging data
sections or changing header patterns, use Data::Section instead.

This module does not implement caching (yet) which means in every
"get_data_section" or "get_data_section($name)" this module seeks and
re-reads the data section. If you want to avoid doing so for the better
performance, you should implement caching in your own caller code.

If you don't like this design, again, use the superior Data::Section.