The size, in bytes, of a single element.
(self)
| 514 | |
| 515 | @property |
| 516 | def itemsize(self) -> int: |
| 517 | """ |
| 518 | The size, in bytes, of a single element. |
| 519 | """ |
| 520 | return self.dtype.bytes |
| 521 | |
| 522 | def item(self) -> Any: |
| 523 | """ |
no outgoing calls
no test coverage detected