Displaying 1 result from an estimated 1 matches for "objcid".
Did you mean:
obj_id
2004 Oct 30
1
Destructive str(...)?
...de)
EXTPTRSXP and associate a class to it via SET_CLASS. Such objects works
fine until it's passed to str as the following output demonstrates:
> c<-.MCall("RController","getRController")
> c
[1] "<RController: 0x3be5d0>"
> str(c)
Class 'ObjCid' length 1 <pointer: 0x3be5d0>
> c
<pointer: 0x3be5d0>
> str(c)
length 1 <pointer: 0x3be5d0>
The .MCall basically produces an external reference and assigns a class
(ObjCid) to it. There's a corresponding print method and it works fine.
However, when str is calle...