NAME
    Tie::Array::Log - Tied array that behaves like a regular array, but logs
    operations

VERSION
    This document describes version 0.003 of Tie::Array::Log (from Perl
    distribution Tie-Array-Log), released on 2021-07-25.

SYNOPSIS
     use Tie::Array::Log;

     tie my @ary, 'Tie::Array::Log';

     # use like you would a regular array
     push @ary, 1, 2, 3;
     ...

DESCRIPTION
    This class implements tie interface for array but performs regular array
    operations, except logging the operation with Log::ger. It's basically
    used for testing, benchmarking, and documentation only.

HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/Tie-Array-Log>.

SOURCE
    Source repository is at
    <https://github.com/perlancar/perl-Tie-Array-Log>.

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-Array-Log>

    When submitting a bug or request, please include a test-file or a patch
    to an existing test-file that illustrates the bug or desired feature.

SEE ALSO
    Log::ger

    Tie::Scalar::Log, Tie::Hash::Log, Tie::Handle::Log

    Tie::Array, Tie::StdArray

    Tie::Simple

    perltie

AUTHOR
    perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2021, 2019 by perlancar@cpan.org.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.