On 7/29/07, via RT Mehmet Yavuz Selim Soyturk <[EMAIL PROTECTED]> wrote: > # New Ticket Created by "Mehmet Yavuz Selim Soyturk" > # Please include the string: [perl #44247] > # in the subject line of all future correspondence about this issue. > # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=44247 > > > > btw: Is there any reason to use METHODs over PCCMETHODs? That problem > does not exists for PCCMETHODs. > PCCMETHODs use parrot calling conventions, while METHODs do not (as the names suggest.) since parrot calling conventions are complex, it takes more c code to process them, and therefore METHODs are much faster than PCCMETHODs. if you need performance, use METHODs; if you need flexibility, use PCCMETHODs.
~jerry