Acme-SvGROW

 view release on metacpan or  search on metacpan

lib/Acme/SvGROW.pm  view on Meta::CPAN

     sub SvGROW($$) : lvalue {
        DGrow($_[0],$_[1]);
        $_[0]
     }
     1;
LVAL

     sub SvGROW($$) {
        DGrow($_[0],$_[1]);
        $_[0]
     }
NOLVAL

}
else
{
   eval <<'LVAL' or eval <<'NOLVAL'

     sub SvGROW($$) : lvalue {
        my $tmp = $_[0];
        $_[0] = pack 'x'.int(0+$_[1]);
        $_[0] = $tmp;
        $_[0]
     }
     1;
LVAL

     sub SvGROW($$) {
        my $tmp = $_[0];
        $_[0] = pack 'x'.int(0+$_[1]);
        $_[0] = $tmp;
        $_[0]
     }
NOLVAL

};

1;
__END__

=head1 NAME

Acme::SvGROW - syntax for pre-extending a string's storage,
like the proposed use of C<length> as an L-value

=head1 SYNOPSIS

  use Acme::SvGROW;
  SvGrow($BigString, 100000);
  # when l-value subroutines are available (5.8 and later)
  SvGrow($BigString, 100000) = InitialValueOfBigString();

=head1 DESCRIPTION

Trivial module implementing string storage preallocation using
techniques shared on perl5-porters mailing list November 4 and 5, 2009

=head1 EXPORT

the C<SvGROW> subroutine is exported. It takes two arguments,
the first the string to extend and the second the length.

=head1 SEE ALSO

L<perlguts>

L<Data::Peek> for a benchmarking of the alternatives

The author of this module is in favor of allowing C<length> to
be used as an lvalue to thinly invoke the SvGROW internals macro

=head1 CHANGES

=head2 0.03

Data::Peek::DGrow will be used if available

=head1 AUTHOR

David Nicol davidnico@cpan.org

=head1 COPYRIGHT AND LICENSE

Public domain: use at will.

=cut



( run in 0.604 second using v1.01-cache-2.11-cpan-5a3173703d6 )