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

Catmandu::Fix::Bind::Group - a role for a binder that executes all fixes as one group

Description

       This role flags a Catmandu::Fix::Bind implementation as a Catmandu::Fix::Bind::Group.  All fixes inside a
       Bind will be treated as one singular function.

Name

       Catmandu::Fix::Bind::Group - a role for a binder that executes all fixes as one group

See Also

       Catmandu::Fix::Bind

perl v5.40.0                                       2025-01-17                    Catmandu::Fix::Bind::Group(3pm)

Synopsis

           # Fixes fix1(), ... fixN() will be passed as one function to the internal 'bind' method
               do identity()
                  fix1()
                  .
                  .
                  fixN()
               end

           # Fixes fix1(), ... fixN() will be passed as one by one to the internal 'bind' method
           do maybe()
              fix1()
              .
              .
              fixN()
           end

See Also