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
Utils(3) User Contributed Perl Documentation Utils(3)

Array::Utils - small utils for array manipulation

        use Array::Utils qw(:all);
        
        my @a = qw( a b c d );
        my @b = qw( c d e f );
        # symmetric difference
        my @diff = array_diff(@a, @b);
        # intersection
        my @isect = intersect(@a, @b);
        
        # unique union
        my @unique = unique(@a, @b);
        
        # check if arrays contain same members
        if ( !array_diff(@a, @b) ) {
                # do something
        }
        
        # get items from array @a that are not in array @b
        my @minus = array_minus( @a, @b );

A small pure-perl module containing list manipulation routines. The module emerged because I was tired to include same utility routines in numerous projects.

"unique"
Returns an array of unique items in the arguments list.
"intersect"
Returns an intersection of two arrays passed as arguments, keeping the order of the second parameter. A nice side effect of this function can be exploited in situations as:

        @atreides = qw( Leto Paul Alia 'Leto II' );
        @mylist = qw( Alia Leto );
        @mylist = intersect( @mylist, @atreides );  # and @mylist is ordered as Leto,Alia
    
"array_diff"
Return symmetric difference of two arrays passed as arguments.
"array_minus"
Returns the difference of the passed arrays A and B (only those array elements that exist in A and do not exist in B). If an empty array is returned, A is subset of B.

Function was proposed by Laszlo Forro <salmonix@gmail.com>.

None known yet

Sergei A. Fedorov <zmij@cpan.org>

I will be happy to have your feedback about the module.

This module is Copyright (c) 2007 Sergei A. Fedorov. All rights reserved.

You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.

This is free software. IT COMES WITHOUT WARRANTY OF ANY KIND.

2010-05-07 perl v5.40.2

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.