my ($class, $meta, @attrs) = @_;
my $self = $class->SUPER::new($meta, @attrs);
my $index = 0;
- $self->{'%!slot_index_map'} = { map { $_ => $index++ } $self->get_all_slots };
+ $self->{'slot_index_map'} = { map { $_ => $index++ } $self->get_all_slots };
return $self;
}
# operations on meta instance
-sub get_slot_index_map { (shift)->{'%!slot_index_map'} }
+sub get_slot_index_map { (shift)->{'slot_index_map'} }
sub initialize_slot {
my ($self, $instance, $slot_name) = @_;
sub get_slot_value {
my ($self, $instance, $slot_name) = @_;
- my $value = $instance->[ $self->{'%!slot_index_map'}->{$slot_name} ];
+ my $value = $instance->[ $self->{'slot_index_map'}->{$slot_name} ];
return $value unless ref $value;
refaddr $value eq refaddr $unbound ? undef : $value;
}
sub set_slot_value {
my ($self, $instance, $slot_name, $value) = @_;
- $instance->[ $self->{'%!slot_index_map'}->{$slot_name} ] = $value;
+ $instance->[ $self->{'slot_index_map'}->{$slot_name} ] = $value;
}
sub is_slot_initialized {
my ($self, $instance, $slot_name) = @_;
# NOTE: maybe use CLOS's *special-unbound-value* for this?
- my $value = $instance->[ $self->{'%!slot_index_map'}->{$slot_name} ];
+ my $value = $instance->[ $self->{'slot_index_map'}->{$slot_name} ];
return 1 unless ref $value;
refaddr $value eq refaddr $unbound ? 0 : 1;
}
# this is for an extra attribute constructor
# option, which is to be able to create a
# way for the class to access the history
-AttributesWithHistory->meta->add_attribute('$!history_accessor' => (
+AttributesWithHistory->meta->add_attribute('history_accessor' => (
reader => 'history_accessor',
init_arg => 'history_accessor',
predicate => 'has_history_accessor',
# this is a place to store the actual
# history of the attribute
-AttributesWithHistory->meta->add_attribute('$!_history' => (
+AttributesWithHistory->meta->add_attribute('_history' => (
accessor => '_history',
default => sub { {} },
));