(self)
| 443 | return self.__columns__[name] |
| 444 | |
| 445 | def _dtypes(self) -> Mapping[str, dt.DType]: |
| 446 | return MappingProxyType(self.__dtypes__) |
| 447 | |
| 448 | def typehints(self) -> Mapping[str, Any]: |
| 449 | return MappingProxyType(self.__types__) |
no outgoing calls