Luke Palmer <[EMAIL PROTECTED]> wrote: > When writing one of my pet languages, I found a need (or a want) to > replace the contents of a PMC with a different PMC. To accomplish this, > I wrote an op that memcpied the header of the source into the header of > the destination. It worked. (Maybe a simple struct assignment would > work, too)
Its not outerly clear what you want to achieve, but it sounds like assign Px, Py assign the PMC Px to the contents of Py, i.e. the set_pmc vtable. > Luke leo