NAME
extend.pod - Parrot extension system
SYNOPSIS
#include "parrot/extend.h"
int main(int argc, char *argv[]) {
}
FILES
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, andmethod
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.