(self)
| 1265 | return f"arrow::{self.name}" |
| 1266 | |
| 1267 | def _format_null(self): |
| 1268 | if self.type_class.is_parametric: |
| 1269 | return f"{self._format_type()} of type {self.type}, null value" |
| 1270 | else: |
| 1271 | return f"{self._format_type()} of null value" |
| 1272 | |
| 1273 | def _for_evaluation(self): |
| 1274 | return for_evaluation(self.val) |