The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Range::Integer - Integer set arithmetics.

VERSION

This documentation describes version 0.01

SYNOPOSIS

 use Range::Integer;

 my @list = Range::Integer->expand( '3,4~9,-6~7,&6~10' );
 my $string = Range::Integer->serial( '3', '6', '7~9' );

 my $r1 = Range::Integer->new( '3', '6', '7~9' );
 my $r2 = Range::Integer->new( '3,6~7' );
 my $r3 = Range::Integer->new( '3,4~9,-6~7,&6~10' );

 my $r4 = $r2 - $r3;
 my $r5 = $r2 + $r3;
 my @r5 = $r5->list();

 $r5 &= $r1;

 print $r5, "\n";

DESCRIPTION

string()

Overloads "".

SEE ALSO

Implements Range::Integer::Object and Range::Integer::Parse. See Range::Integer::Object for additional methods.

AUTHOR

Kan Liu

COPYRIGHT and LICENSE

Copyright (c) 2010. Kan Liu

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