package Chart::Clicker::Data::Range; { $Chart::Clicker::Data::Range::VERSION = '2.76'; } use Moose; # ABSTRACT: A range of Data has 'lower' => ( is => 'rw', isa => 'Num' ); has 'max' => ( is => 'rw', isa => 'Num' ); has 'min' => ( is => 'rw', isa => 'Num' ); has 'upper' => ( is => 'rw', isa => 'Num' ); after 'lower' => sub { my $self = shift; if(defined($self->{'min'})) { $self->{'lower'} = $self->{'min'}; } }; after 'upper' => sub { my $self = shift; if(defined($self->{'max'})) { $self->{'upper'} = $self->{'max'}; } }; after 'min' => sub { my $self = shift; if(defined($self->{'min'})) { $self->{'lower'} = $self->{'min'}; } }; after 'max' => sub { my $self = shift; if(defined($self->{'max'})) { $self->{'upper'} = $self->{'max'}; } }; sub add { my ($self, $range) = @_; if(defined($self->upper)) { $self->upper($self->upper + $range->upper); } else { $self->upper($range->upper); } if(!defined($self->lower) || ($range->lower < $self->lower)) { $self->lower($range->lower); } } sub combine { my ($self, $range) = @_; unless(defined($self->min)) { if(!defined($self->lower) || ($range->lower < $self->lower)) { $self->lower($range->lower); } } unless(defined($self->max)) { if(!defined($self->upper) || ($range->upper > $self->upper)) { $self->upper($range->upper); } } return 1; } sub contains { my ($self, $value) = @_; return 1 if $value >= $self->lower && $value <= $self->upper; return 0; } sub divvy { my ($self, $n) = @_; if(!$n) { return []; } my $per = $self->span / ($n - 1); my @vals; for(0..($n - 1)) { push(@vals, $self->lower + ($_ * $per)); } return \@vals; } sub span { my ($self) = @_; return $self->upper - $self->lower; } __PACKAGE__->meta->make_immutable; no Moose; 1; __END__ =pod =head1 NAME Chart::Clicker::Data::Range - A range of Data =head1 VERSION version 2.76 =head1 SYNOPSIS use Chart::Clicker::Data::Range; my $range = Chart::Clicker::Data::Range->new({ lower => 1, upper => 10 }); =head1 DESCRIPTION Chart::Clicker::Data::Range implements a range of values. =head1 ATTRIBUTES =head2 lower Set/Get the lower bound for this Range =head2 max Set/Get the maximum value allowed for this Range. This value should only be set if you want to EXPLICITLY set the upper value. =head2 min Set/Get the minimum value allowed for this Range. This value should only be set if you want to EXPLICITLY set the lower value. =head2 upper Set/Get the upper bound for this Range =head1 METHODS =head2 add Adds the specified range to this one. The lower is reduced to that of the provided one if it is lower, and the upper is ADDED to this range's upper. =head2 combine Combine this range with the specified so that this range encompasses the values specified. For example, adding a range with an upper-lower of 1-10 with one of 5-20 will result in a combined range of 1-20. =head2 contains ($value) Returns true if supplied value falls within this range (inclusive). Otherwise returns false. =head2 divvy my $values = $range->divvy(5); Returns an arrayref of $N - 1 values equally spaced in the range so that it may be divided into $N pieces. =head2 span Returns the span of this range, or UPPER - LOWER. =head1 AUTHOR Cory G Watson =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Cold Hard Code, LLC. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut