| App-Hachero documentation | Contained in the App-Hachero distribution. |
App::Hachero::Result::Data - a class to store analyzed data of Hachero
my $data = App::Hachero::Result::Data->new(
{
foo => 'bar',
hoge => 'fuga',
}
);
$data->count_up;
my @keys = $data->keys;
# qw(foo hoge count)
my $value = $data->value('count');
# 1
$data->count_up(4)
$value = $data->value('count');
# 5
my $hashref = $data->hashref;
# { foo => 'bar', hoge => 'fuga', count => 5 }
A class to store analyzed data of Hachero.
creates result data.
returns keys in this data objects.
returns data value of specified key.
increments 'count' value with specified number. default number is 1.
returns data hashref of this object.
Nobuo Danjou <nobuo.danjou@gmail.com>
| App-Hachero documentation | Contained in the App-Hachero distribution. |
package App::Hachero::Result::Data; use strict; use warnings; sub new { my ($class, $self) = @_; bless $self, $class; } sub keys { my $self = shift; return sort {$a eq 'count' ? 1 : 0} keys %{$self}; } sub value { my ($self, $arg) = @_; return $self->{$arg}; } sub count_up { my ($self, $n) = @_; $n ||= 1; shift->{count} += $n; } sub hashref { my $self = shift; return { %{$self} }; } 1; __END__