Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
package Uniqueue; use vars qw($VERSION); $VERSION = 0.03; sub new { my $class = shift; my $self = bless { queue => [], hash =>{}}, $class; enqueue ( $self, @_ ); $self; } sub enqueue : locked { my $self = shift; my $count = 0; for (@_) { next if exists $self->{'hash'}{$_}; push @{$self->{'queue'}}, $_; $self->{'hash'}{$_}++; ++$count; } $count; } sub next : locked { my $self = shift; my $val = shift @{$self->{'queue'}}; defined $val and delete $self->{'hash'}{$val}; $val; } sub clear : locked { my $self = shift; $self->{'hash'} = {}; my @vals = @{$self->{'queue'}}; $self->{'queue'} = []; @vals; } sub peek { my $self = shift; return wantarray ? @{$self->{'queue'}} : $self->{'queue'}[0]; } sub count { my $self = shift; scalar @{$self->{'queue'}}; } 1; __END__ =head1 NAME Uniqueue - Perl extension providing a FIFO without duplication =head1 SYNOPSIS use Uniqueue; my $fifo = Uniqueue->new ( @foo ); $fifo->enqueue( @bar ) my @queued = $fifo->peek; my $look = $fifo->peek; my $next = $fifo->next; my @former = $fifo->clear; =head1 DESCRIPTION Uniqueue is an object class which provides a FIFO without duplication. Adding an element to the queue is prevented if another like it is already present. 'Like it' means that stringification produces identical results. The class constructor is named 'new'. It optionally takes a list of arguments which will be pushed onto the queue with duplicates omitted. The leftmost example of duplicates establishes position in the queue, whose head is to the left of the argument list. Instances of Uniqueue have five methods available to them. =over =item * enqueue LIST Adds the unique and unrepresented elements of LIST to the tail of the queue. Returns the number of elements added. =item * next Removes and returns one item from the head of the queue. =item * clear Empties the queue, returning the entire queue as a list. =item * peek Inspects the queue without modifying its state. Returns the entire queue as a list in list context, or the head element in scalar context. =item * count Inspects the queue without modifying its state. Returns the number of items in the queue. =back The methods which modify state have the locked attribute, an attempt to protect the state from corruption if shared by threads. The author admits to the cargo-cult nature of this and welcomes instruction. Uniqueue should be subclassable simply by overriding enqueue, next, an +d perhaps clear. Initialization in new is handled by calling enqueue push constructor arguments onto the empty queue, so the default new will suffice for subclassed Uniqueues. =head1 AUTHOR Zaxo, /msg Zaxo on Perlmonks.org Credits to RMGir for suggested cleanup. =head1 SEE ALSO L<perl>. =cut

In reply to Uniqueue by Zaxo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-03-28 20:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found