Path: usenet.cise.ufl.edu!huron.eel.ufl.edu!usenet.eel.ufl.edu!news.ultranet.com!nntp.cs.ubc.ca!nntp.portal.ca!news.bctel.net!newsfeed.direct.ca!newsfeed.wli.net!nntp.teleport.com!news.teleport.com!not-for-mail
From:
[email protected] (Steven W McDougall)
Newsgroups: comp.lang.perl.announce,comp.lang.perl.modules
Subject: Set::IntSpan 1.06 released - bug fix
Followup-To: comp.lang.perl.modules
Date: 9 Mar 1998 19:01:17 GMT
Organization: The World Public Access UNIX, Brookline, MA
Lines: 42
Sender:
[email protected]
Approved:
[email protected] (comp.lang.perl.announce)
Message-ID: <
[email protected]>
NNTP-Posting-Host: gadget.cscaper.com
X-Disclaimer: The "Approved" header verifies header information for article transmission and does not imply approval of content.
Xref: usenet.cise.ufl.edu comp.lang.perl.announce:7 comp.lang.perl.modules:201
Set::Intspan 1.06 has been uploaded to PAUSE and is propagating
through the CPAN. In version 1.05, the expression
Set::IntSpan->new->union("0")
returned the empty set. In version 1.06, it returns the set {0}.
>From the README file:
Set::IntSpan VERSION 1.06 - Manages sets of integers
DESCRIPTION
Set::IntSpan manages sets of integers. It is optimized for sets that
have long runs of consecutive integers. These arise, for example, in
.newsrc files, which maintain lists of articles:
alt.foo: 1-21,28,31
alt.bar: 1-14192,14194,14196-14221
Sets are stored internally in a run-length coded form. This provides
for both compact storage and efficient computation. In particular,
set operations can be performed directly on the encoded
representation.
>From the Changes file:
Revision history for Perl extension Set::IntSpan
1.06 Mar 3 1998
- fixed real_set "0" bug
- SWM