Offset of first element. May be > 0 if using chunks; for example for a column with N chunks of equal size M (only the last chunk may be shorter), ``offset = n * M``, ``n = 0 .. N-1``.
(self)
| 252 | |
| 253 | @property |
| 254 | def offset(self) -> int: |
| 255 | """ |
| 256 | Offset of first element. |
| 257 | |
| 258 | May be > 0 if using chunks; for example for a column with N chunks of |
| 259 | equal size M (only the last chunk may be shorter), |
| 260 | ``offset = n * M``, ``n = 0 .. N-1``. |
| 261 | """ |
| 262 | return self._col.offset |
| 263 | |
| 264 | @property |
| 265 | def dtype(self) -> Tuple[DtypeKind, int, str, str]: |
no outgoing calls
no test coverage detected