| 844 | bool IsMappingView(PyObject* o) { return IsMappingViewHelper(o) == 1; } |
| 845 | bool IsAttrs(PyObject* o) { return IsAttrsHelper(o) == 1; } |
| 846 | bool IsTensor(PyObject* o) { return IsTensorHelper(o) == 1; } |
| 847 | bool IsResourceVariable(PyObject* o) { |
| 848 | return IsResourceVariableHelper(o) == 1; |
| 849 | } |
no test coverage detected