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

Role::Commons::Tap - an object method which helps with chaining, inspired by Ruby

Author

       Toby Inkster <tobyink@cpan.org>.

Bugs

       Please report any bugs to <http://rt.cpan.org/Dist/Display.html?Queue=Role-Commons>.

Description

DONOTUSETHISMODULE! Use Object::Tap or Object::Util instead. They are not drop-in replacements, but a
       far more sensible way to have a "tap" method.

       This module has nothing to do with the Test Anything Protocol (TAP, see Test::Harness).

       This module is a role for your class, providing it with a "tap" method.  The "tap" method is an aid to
       chaining. You can do for example:

          $object
             ->tap( sub{ $_->foo(1) } )
             ->tap( sub{ $_->bar(2) } )
             ->tap( sub{ $_->baz(3) } );

       ... without worrying about what the "foo", "bar" and "baz" methods return, because "tap" always returns
       its invocant.

       The "tap" method also provides a few shortcuts, so that the above can actually be written:

          $object->tap(foo => [1], bar => [2], baz => [3]);

       ... but more about that later. Anyway, this module provides one method for your class - "tap" - which is
       described below.

   tap(@arguments)
       This can be called as an object or class method, but is usually used as an object method.

       Each argument is processed in the order given. It is processed differently, depending on the kind of
       argument it is.

       Coderefarguments

       An argument that is a coderef (or a blessed argument that overloads "&{}" - see overload) will be
       executed in a context where $_ has been set to the invocant of the tap method "tap". The return value of
       the coderef is ignored. For example:

          {
             package My::Class;
             use Role::Commons qw(Tap);
          }
          print My::Class->tap(
             sub { warn uc $_; return 'X' },
          );

       ... will warn "MY::CLASS" and then print "My::Class".

       Because each argument to "tap" is processed in order, you can provide multiple coderefs:

          print My::Class->tap(
             sub { warn uc $_; return 'X' },
             sub { warn lc $_; return 'Y' },
          );

       Stringarguments

       A non-reference argument (i.e. a string) is treated as a shortcut for a method call on the invocant. That
       is, the following two taps are equivalent:

          $object->tap( sub{$_->foo(@_)} );
          $object->tap( 'foo' );

       Arrayrefarguments

       An arrayref is dereferenced yielding a list. This list is passed as an argument list when executing the
       previous coderef argument (or string argument). The following three taps are equivalent:

          $object->tap(
             sub { $_->foo('bar', 'baz') },
          );
          $object->tap(
             sub { $_->foo(@_) },
             ['bar', 'baz'],
          );
          $object->tap(
             foo => ['bar', 'baz'],
          );

       Scalarrefarguments

       There are a handful of special scalar ref arguments that are supported:

       "\"EVAL""
           This  indicates  that  you  wish  for  all subsequent coderefs to be wrapped in an "eval", making any
           errors that occur within it non-fatal.

              $object->tap(\"EVAL", sub {...});

       "\"NO_EVAL""
           Switches back to the default behaviour of not wrapping coderefs in "eval".

              $object->tap(
                 \"EVAL",
                 sub {...},   # any fatal errors will be caught and ignored
                 \"NO_EVAL",
                 sub {...},   # fatal errors are properly fatal again.
              );

Disclaimer Of Warranties

       THIS  PACKAGE  IS  PROVIDED  "AS  IS"  AND  WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
       LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.

perl v5.38.2                                       2024-03-07                            Role::Commons::Tap(3pm)

Name

       Role::Commons::Tap - an object method which helps with chaining, inspired by Ruby

See Also

Synopsis

          # This fails because the "post" method doesn't return
          # $self; it returns an HTTP::Request object.
          #
          LWP::UserAgent
             -> new
             -> post('http://www.example.com/submit', \%data)
             -> get('http://www.example.com/status');

          # The 'tap' method runs some code and always returns $self.
          #
          LWP::UserAgent
             -> new
             -> tap(post => [ 'http://www.example.com/submit', \%data ])
             -> get('http://www.example.com/status');

          # Or use a coderef...
          #
          LWP::UserAgent
             -> new
             -> tap(sub { $_->post('http://www.example.com/submit', \%data) })
             -> get('http://www.example.com/status');

See Also