Hailo::Role::Arguments - A role which adds an 'arguments' attribute


Hailo documentation Contained in the Hailo distribution.

Index


Code Index:

NAME

Top

Hailo::Role::Arguments - A role which adds an 'arguments' attribute

ATTRIBUTES

Top

arguments

A HashRef[Str] of arguments passed to us from Hailo's storage, or tokenizer arguments.

AUTHOR

Top

Ævar Arnfjörð Bjarmason <avar@cpan.org>

LICENSE AND COPYRIGHT

Top


Hailo documentation Contained in the Hailo distribution.

package Hailo::Role::Arguments;
BEGIN {
  $Hailo::Role::Arguments::AUTHORITY = 'cpan:AVAR';
}
BEGIN {
  $Hailo::Role::Arguments::VERSION = '0.69';
}

use 5.010;
use Any::Moose '::Role';
use namespace::clean -except => 'meta';

has arguments => (
    isa           => 'HashRef[Str]',
    is            => 'ro',
    documentation => "Arguments passed from Hailo",
    auto_deref    => 1,
);

1;