The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# [[[ HEADER ]]]
use RPerl;
use strict;
our $VERSION = 0.001_000;
# [[[ OO INHERITANCE ]]]
# DEV NOTE, CORRELATION #rp054: auto-generation of OO property accessors/mutators checks the auto-generated RPerl type list for base data types to determine if the entire data structure can be returned by setting ($return_whole = 1)
# [[[ OO PROPERTIES ]]]
our hashref $properties = { test_property => my integer_arrayref $TYPED_test_property = undef }; # no initial size, no initial values
# [[[ SUBROUTINES & OO METHODS ]]]
sub test_method {
{ my integer_arrayref::method $RETURN_TYPE };
( my object $self, my integer $input_integer ) = @ARG;
my integer_arrayref $test_property_shortcut = $self->get_test_property();
$test_property_shortcut->[0] *= $input_integer;
return $self->{test_property};
}
1; # end of class