Lines Matching defs:ACTUAL
70 return unless $wanted_class =~ /^NEXT:.*:ACTUAL/;
86 package NEXT::ACTUAL; @ISA = 'NEXT';
87 package NEXT::ACTUAL::UNSEEN; @ISA = 'NEXT';
88 package NEXT::ACTUAL::DISTINCT; @ISA = 'NEXT';
89 package NEXT::UNSEEN::ACTUAL; @ISA = 'NEXT';
90 package NEXT::DISTINCT::ACTUAL; @ISA = 'NEXT';
251 $self->NEXT::ACTUAL::method();
257 The C<ACTUAL> tells C<NEXT> that there must actually be a next method to call,
260 C<NEXT::ACTUAL> is most commonly used in C<AUTOLOAD> methods, as a means to
269 shift()->NEXT::ACTUAL::AUTOLOAD(@_);
273 By using C<NEXT::ACTUAL>, if there is no other C<AUTOLOAD> to handle the
369 $self->NEXT::DISTINCT::ACTUAL::method();
373 $self->NEXT::ACTUAL::DISTINCT::method();