py_getslot method
Get the i-th slot of the object.
The object must have slots and i
must be in valid range.
Implementation
py_ObjectRef py_getslot(
py_Ref self,
int i,
) {
return _py_getslot(
self,
i,
);
}
Get the i-th slot of the object.
The object must have slots and i
must be in valid range.
py_ObjectRef py_getslot(
py_Ref self,
int i,
) {
return _py_getslot(
self,
i,
);
}