(self)
| 165 | return fclass="st">"DateArray{list(zip(self._year, self._month, self._day, strict=True))}" |
| 166 | |
| 167 | def copy(self) -> DateArray: |
| 168 | return DateArray((self._year.copy(), self._month.copy(), self._day.copy())) |
| 169 | |
| 170 | def view(self, dtype: Dtype | None = None) -> DateArray: |
| 171 | return DateArray((self._year.view(), self._month.view(), self._day.view())) |