logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Chart::Clicker::Data::Range - A range of Data

Attributes

lower
       Set/Get the lower bound for this Range

   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.

   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.

   upper
       Set/Get the upper bound for this Range

   ticks
       The number of ticks to be displayed for this range.

Author

       Cory G Watson <gphat@cpan.org>

Description

       Chart::Clicker::Data::Range implements a range of values.

Methods

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.

   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.

   contains($value)
       Returns true if supplied value falls within this range (inclusive).  Otherwise returns false.

   span
       Returns the span of this range, or UPPER - LOWER.

Name

       Chart::Clicker::Data::Range - A range of Data

Synopsis

         use Chart::Clicker::Data::Range;

         my $range = Chart::Clicker::Data::Range->new({
           lower => 1,
           upper => 10
         });

Version

       version 2.90

See Also