Tie::Array::Sorted::Lazy - phpMan

Command: man perldoc info search(apropos)  


Sections
NAME SYNOPSIS DESCRIPTION
NAME
    Tie::Array::Sorted::Lazy - An array which is kept sorted

SYNOPSIS
            use Tie::Array::Sorted::Lazy;

            tie @a, "Tie::Array::Sorted::Lazy", sub { $_[0] <=> $_[1] };

            push @a, 10, 4, 7, 3, 4;
            print "@a"; # "3 4 4 7 10"

DESCRIPTION
    This is a version Tie::Array::Sorted optimised for arrays which are
    stored to more often than fetching. In this case the array is resorted
    on retrieval, rather than insertion. (It only re-sorts if data has been
    modified since the last sort).

            tie @a, "Tie::Array::Sorted::Lazy", sub { -s $_[0] <=> -s $_[1] };


Generated by phpMan Author: Che Dong On Apache Under GNU General Public License - MarkDown Format
2026-05-23 08:46 @216.73.217.24 CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 TransitionalValid CSS!

^_back to top