logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

STAR::Filter - Perl extension for filtering DataBlock objects

Author

       Wolfgang Bluhm, mail@wbluhm.comAcknowledgments
       Thanks to Phil Bourne, Helge Weissig, Anne Kuller, Doug Greer, Michele Bluhm, and others for support,
       help, and comments.

Class Methods

filter_dict
         Usage:  $filtered_dict = STAR::Filter->filter_dict(
                                    -dict=>$dict,
                                    -options=>$options);

       A (very simplistic) interactive method for filtering a STAR::Dictionary object (.cob file). The user is
       prompted for each category whether to include (retain) it in the filtered object. The method returns a
       reference to the filtered (reduced) STAR::Dictionary object.

       Note: This method is preliminary and subject to change.

   filter_through_dict
         Usage:  $filtered_data = STAR::Filter->filter_through_dict(
                                    -data=>$data,
                                    -dict=>$dict,
                                    -options=>$options);

       Filters an STAR::DataBlock object through a STAR::Dictionary object.  Returns a reference to a new
       STAR::DataBlock object in which only those items are included which were defined in the specified
       dictionary.

Description

       Contains the filter object for filtering DataBlock objects.  DataBlock objects are created by Parser and
       modified by DataBlock.

Name

       STAR::Filter - Perl extension for filtering DataBlock objects

   Version
       This documentation refers to version 0.01 of this module.

See Also

       STAR::Parser, STAR::DataBlock, STAR::Dictionary.

perl v5.38.2                                       2024-02-16                                  STAR::Filter(3pm)

Synopsis

         use STAR::Filter;

See Also