Subject: | Accept settings in constructor |
new should set $self to
my $self = {
_permitted => \%fields,
%fields,
@_,
};
instead of just
my $self = {
_permitted => \%fields,
%fields,
};
To allow graph options to be set at creation rather than only via
numerous method calls.