The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

extend.pod - Parrot extension system

SYNOPSIS

    #include "parrot/extend.h"

    int main(int argc, char *argv[]) {
    }

FILES

include/parrot/extend.h
extend.c

DESCRIPTION

Data Structures

TODO

Constants

TODO

Functions

Parrot_call_method(Parrot_INTERP interp, Parrot_PMC sub Parrot_PMC object, Parrot_STRING method, const char *signature, ...)

Calls a method on object with the given signature and arguments. sub is the method that's being called, and method is the name of the method in the call stack. This is useful for calling aliased methods.

SEE ALSO

extend.c and extend.h for the implementation.