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
Set::Tiny(3) User Contributed Perl Documentation Set::Tiny(3)

Set::Tiny - Simple sets of strings

Version 0.04

    use Set::Tiny;

    my $s1 = Set::Tiny->new(qw( a b c ));
    my $s2 = Set::Tiny->new(qw( b c d ));

    my $u  = $s1->union($s2);
    my $i  = $s1->intersection($s2);
    my $s  = $s1->symmetric_difference($s2);

    print $u->as_string; # (a b c d)
    print $i->as_string; # (b c)
    print $s->as_string; # (a d)

    print "i is a subset of s1"   if $i->is_subset($s1);
    print "u is a superset of s1" if $u->is_superset($s1);

    # or using the shorter initializer:

    use Set::Tiny qw( set );

    my $s1 = set(qw( a b c ));
    my $s2 = set([1, 2, 3]);

Set::Tiny is a thin wrapper around regular Perl hashes to perform often needed set operations, such as testing two sets of strings for equality, or checking whether one is contained within the other.

For a more complete implementation of mathematical set theory, see Set::Scalar. For sets of arbitrary objects, see Set::Object.

Convenience
Set::Tiny aims to provide a convenient interface to commonly used set operations, which you would usually implement using regular hashes and a couple of "for" loops (in fact, that's exactly what Set::Tiny does).
Speed
The price in performance you pay for this convenience when using a full-featured set implementation like Set::Scalar is way too high if you don't actually need the advanced functionality it offers. Run examples/benchmark.pl for a (non-representative) comparison between different "Set::" modules.
Ease of use
Set::Object offers better performance than Set::Scalar, but needs a C compiler to install. Set::Tiny has no dependencies and contains no C code.

If you request it, Set::Tiny can export a function "set()", which lets you create a Set::Tiny instance in a more compact form.

Unlike the constructor, this function also accepts the set elements as an array reference.

If you pass an existing Set::Tiny to the initializer, it creates a clone of the set and returns that.

Note that all methods that expect a list of set elements stringify their arguments before inserting them into the set.

Class method. Returns a new Set::Tiny object, initialized with the strings in list, or the empty set if list is empty.

Returns a new set with the same elements as this one.

Inserts the elements in list into the set.

Removes the elements in list from the set. Elements that are not members of the set are ignored.

For each element in list, if it is already a member of the set, deletes it from the set, else insert it into the set.

Removes all elements from the set.

Returns a string representation of the set.

Returns the (unordered) list of elements.

Returns the number of elements.

Returns true if all of the elements in list are members of the set. If list is empty, returns true.

Returns the string if it is contained in the set.

Returns true if the set is the empty set.

Returns a new set containing both the elements of this set and set.

Returns a new set containing the elements that are present in both this set and set.

Like "intersection()", but orders the sets by size before comparing their elements. This results in a small overhead for small, evenly sized sets, but a large speedup when comparing bigger (~ 100 elements) and very unevenly sized sets.

Returns a new set containing the elements of this set with the elements of set removed.

Returns a new set containing the elements that are present in either this set or set, but not in both.

Returns true if this set contains the same elements as set.

Returns true if this set has no elements in common with set. Note that the empty set is disjoint to any other set.

Returns true if this set has elements in common with set, but both also contain elements that they have not in common with each other.

Returns true if this set is a proper subset of set.

Returns true if this set is a proper superset of set.

Returns true if this set is a subset of set.

Returns true if this set is a superset of set.

Stanis Trendelenburg, "<trendels at cpan.org>"

Thanks to Adam Kennedy for advice on how to make this module "Tiny".

Please report any bugs or feature requests to "bug-set-tiny at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Set-Tiny>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Copyright 2009 Stanis Trendelenburg, all rights reserved.

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

Set::Scalar, Set::Object
2016-03-04 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.