The microseconds of the datetime
(self)
| 440 | |
| 441 | @property |
| 442 | def microsecond(self) -> T_DataArray: |
| 443 | """The microseconds of the datetime""" |
| 444 | return self._date_field("microsecond", np.int64) |
| 445 | |
| 446 | @property |
| 447 | def nanosecond(self) -> T_DataArray: |
nothing calls this directly
no test coverage detected