(cls, scalars, *, dtype=None, copy: bool = False)
| 158 | |
| 159 | @classmethod |
| 160 | def _from_sequence(cls, scalars, *, dtype=None, copy: bool = False) -> Self: |
| 161 | values, mask = cls._coerce_to_array(scalars, dtype=dtype, copy=copy) |
| 162 | return cls(values, mask) |
| 163 | |
| 164 | def _cast_pointwise_result(self, values) -> ArrayLike: |
| 165 | if isna(values).all(): |
no test coverage detected