Set::IntSpan::Island - adds island, hole and cover functionality to Set::IntSpan

DESCRIPTION
Set::IntSpan manages sets of integers. This module adds the ability to manipulate
holes and islands (called spans in Set::IntSpan).

For example, given the following spans as identified

  a  10-15
  b  12
  c  14-20
  d  25

this module will provide you with all set covers and their members.

  10-11 a
  12    a b
  13    a
  14-15 a c
  16-20 c
  21-24 -
  25    d

HOW TO BUILD AND INSTALL
perl Makefile.PL
make
make test
make install

TODO
Send suggestions, bugs, etc. to martink@bcgsc.ca

COPYRIGHT
Copyright (c) 2007 by Martin Krzywinski. This module is free
software; you can redistribute it and/or modify it under the same
terms as Perl itself.