| 55 | } |
| 56 | |
| 57 | static Py_ssize_t TensorSize_length(TensorSize* self) { |
| 58 | return PyTuple_Type.tp_as_sequence->sq_length((PyObject*)self); |
| 59 | } |
| 60 | |
| 61 | static PyObject* TensorSize_concat(TensorSize* self, PyObject* other) { |
| 62 | PyObjectPtr result(PyTuple_Type.tp_as_sequence->sq_concat((PyObject*)self, other)); |
no outgoing calls
no test coverage detected