GDGraph

 view release on metacpan or  search on metacpan

Graph/Data.pm  view on Meta::CPAN

use constant ERR_ILL_DATASET    => 'Illegal dataset number';
use constant ERR_ILL_POINT      => 'Illegal point number';
use constant ERR_NO_DATASET     => 'No data sets set';
use constant ERR_ARGS_NO_HASH   => 'Arguments must be given as a hash list';

sub new
{
    my $proto = shift;
    my $class = ref($proto) || $proto;
    my $self = [];
    bless $self => $class;
    $self->copy_from(@_) or return $self->_move_errors if (@_);
    return $self;
}

sub DESTROY
{
    my $self = shift;
    $self->clear_errors();
}

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 2.057 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )