|
Perl 6
SMOP p6opaque Implementation: Revision 22
The p6opaque Responder Interface is the default responder for all Perl 6 objects, according to the SMOP OO API. p6opaque Structureclass p6opaque {has $.instanceof; # direct delegation of a single prototype, used by most object instances.} class p6opaque_proto {has $.how; # the metaclass instance in use} |