our
$VERSION
=
'2.2207'
;
'Moose::Meta::Method::Accessor::Native::Hash::get'
;
sub
_inline_process_arguments {
my
$self
=
shift
;
$self
->Moose::Meta::Method::Accessor::Native::Hash::set::_inline_process_arguments(
@_
);
}
sub
_inline_check_argument_count {
my
$self
=
shift
;
$self
->Moose::Meta::Method::Accessor::Native::Hash::set::_inline_check_argument_count(
@_
);
}
sub
_inline_check_arguments {
my
$self
=
shift
;
$self
->Moose::Meta::Method::Accessor::Native::Hash::set::_inline_check_arguments(
@_
);
}
sub
_return_value {
my
$self
=
shift
;
$self
->Moose::Meta::Method::Accessor::Native::Hash::set::_return_value(
@_
);
}
sub
_generate_method {
my
$self
=
shift
;
my
$inv
=
'$self'
;
my
$slot_access
=
$self
->_get_value(
$inv
);
return
(
'sub {'
,
'my '
.
$inv
.
' = shift;'
,
$self
->_inline_curried_arguments,
$self
->_inline_check_lazy(
$inv
,
'$type_constraint'
,
'$type_coercion'
,
'$type_message'
),
'if (@_ == 1) {'
,
$self
->_inline_check_var_is_valid_key(
'$_[0]'
),
$slot_access
.
'->{$_[0]}'
,
'}'
,
'else {'
,
$self
->_inline_writer_core(
$inv
,
$slot_access
),
'}'
,
'}'
,
);
}
sub
_minimum_arguments { 1 }
sub
_maximum_arguments { 2 }
no
Moose::Role;
1;