Numel implementation for arrays that want to return numel of the same type.
(x, **kwargs)
| 272 | |
| 273 | |
| 274 | def _numel_arraylike(x, **kwargs): |
| 275 | """Numel implementation for arrays that want to return numel of the same type.""" |
| 276 | return _numel(x, coerce_np_ndarray=False, **kwargs) |
| 277 | |
| 278 | |
| 279 | def _numel(x, coerce_np_ndarray: bool, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…