Append a value (can be None for null).
(self, value)
| 109 | """Base class for array appenders.""" |
| 110 | |
| 111 | def append(self, value): |
| 112 | """Append a value (can be None for null).""" |
| 113 | raise NotImplementedError |
| 114 | |
| 115 | def finish(self): |
| 116 | """Finish building and return the Arrow array.""" |
no outgoing calls