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 . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website 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 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.