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

File::Util::Interface::Modern - Modern call interface to File::Util

Description

       Provides a ::Modern-style interface for argument passing to and between the public and private methods of
       File::Util.

       Whereas call syntax used to only work like this:

          some_method( main_arg => value, qw/ --opt=value --patern=^foo --flag / )

       This module allows File::Util to work with calls that are more consistent with current practices in Perl,
       like this:

          some_method( main_arg => { arg => value, opt => value, flag => 1 } );
             -or-
          some_method( '/var/log' => { match => [ qr/.*\.log/, qr/access|error/ ] } )

       Users, don't use this module by itself.  It is intended for internal use only.

perl v5.36.0                                       2022-11-29                 File::Util::Interface::Modern(3pm)

Name

       File::Util::Interface::Modern - Modern call interface to File::Util

Version

       version 4.201720

See Also