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

# [[[ HEADER ]]]
use strict;
our $VERSION = 0.001_100;
# [[[ OO INHERITANCE ]]]
#use parent qw(RPerl::GrammarRule RPerl::DataStructure::Hash); # NEED UPGRADE, CORRELATION #rp023: Inline::CPP support for multiple inheritance
# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
## no critic qw(Capitalization ProhibitMultiplePackages ProhibitReusedNames) # SYSTEM DEFAULT 3: allow multiple & lower case package names
# [[[ INCLUDES ]]]
use Scalar::Util 'blessed';
# [[[ OO PROPERTIES ]]]
our hashref $properties = { # whoah, so meta
property_entries => my object_hashref $TYPED_property_entries = undef
};
# [[[ SUBROUTINES & OO METHODS ]]]
# ...
# [[[ SUB-TYPES ]]]
# a property is a data structure belonging to a class or object, each RPerl object has a properties hash
package # hide from PAUSE indexing
properties;
use strict;
1; # end of class