![]() |
![]()
| ![]() |
![]()
NAMEChart::Clicker::Data::Range - A range of Data VERSIONversion 2.90 SYNOPSISuse Chart::Clicker::Data::Range; my $range = Chart::Clicker::Data::Range->new({ lower => 1, upper => 10 }); DESCRIPTIONChart::Clicker::Data::Range implements a range of values. ATTRIBUTESlowerSet/Get the lower bound for this Range maxSet/Get the maximum value allowed for this Range. This value should only be set if you want to EXPLICITLY set the upper value. minSet/Get the minimum value allowed for this Range. This value should only be set if you want to EXPLICITLY set the lower value. upperSet/Get the upper bound for this Range ticksThe number of ticks to be displayed for this range. METHODSaddAdds 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. combineCombine 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. spanReturns the span of this range, or UPPER - LOWER. AUTHORCory G Watson <gphat@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2016 by Cory G Watson. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|