GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Tie::Array::Sorted(3) User Contributed Perl Documentation Tie::Array::Sorted(3)

Tie::Array::Sorted - An array which is kept sorted

        use Tie::Array::Sorted;

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

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

This presents an ordinary array, but is kept sorted. All pushes and unshifts cause the elements in question to be inserted in the appropriate location to maintain order.

Direct stores ("$a[10] = "wibble"") effectively splice out the original value and insert the new element. It's not clear why you'd want to use direct stores like that, but this module does the right thing if you do.

If you don't like the ordinary lexical comparator, you can provide your own; it should compare the two elements it is given. For instance, a numeric comparator would look like this:

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

Whereas to compare a list of files by their sizes, you'd so something like:

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

If you do more stores than fetches, you may find Tie::Array::Sorted::Lazy more efficient.

Original author: Simon Cozens

Current maintainer: Tony Bowden

Please direct all correspondence regarding this module to: bug-Tie-Array-Sorted@rt.cpan.org

This module was originall written as part of the Plucene project. However, as Plucene no longer uses this, it is effectively unmaintained.

  Copyright (C) 2003-2006 Simon Cozens and Tony Bowden.

  This program is free software; you can redistribute it and/or modify it under
  the terms of the GNU General Public License; either version 2 of the License,
  or (at your option) any later version.

  This program is distributed in the hope that it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  FOR A PARTICULAR PURPOSE.
2006-01-16 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.