MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / JSObjectValuesProxy_length

Method JSObjectValuesProxy_length

src/JSObjectValuesProxy.cc:34–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34Py_ssize_t JSObjectValuesProxyMethodDefinitions::JSObjectValuesProxy_length(JSObjectValuesProxy *self)
35{
36 if (self->dv.dv_dict == NULL) {
37 return 0;
38 }
39 return JSObjectProxyMethodDefinitions::JSObjectProxy_length((JSObjectProxy *)self->dv.dv_dict);
40}
41
42int JSObjectValuesProxyMethodDefinitions::JSObjectValuesProxy_contains(JSObjectValuesProxy *self, PyObject *key)
43{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected