1 package Moose::Meta::Method::Accessor::Native::String::append;
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
12 with 'Moose::Meta::Method::Accessor::Native::Writer' => {
17 _inline_optimized_set_new_value
22 sub _minimum_arguments { 1 }
24 sub _maximum_arguments { 1 }
26 sub _potential_value {
27 my ( $self, $slot_access ) = @_;
29 return "( $slot_access . \$_[0] )";
32 sub _inline_optimized_set_new_value {
33 my ( $self, $inv, $new, $slot_access ) = @_;
35 return "$slot_access .= \$_[0]";