- or download this
sub pack {
my $self=shift;
my $record=join(':', @{$self}{keys %{$self->{_permitted}}});
return $record;
}
- or download this
my @permitted=qw(name price description);
my %fields;
@fields{@permitted}=undef;
- or download this
sub pack {
my $self=shift;
my $record=join(':', @{$self}{@permitted});
return $record;
}