paleolimbot commented on issue #599:
URL:
https://github.com/apache/arrow-nanoarrow/issues/599#issuecomment-2450888111
Do we want wrappers like:
```c
class Buffer {
public:
void SetAllocator();
void Append(int32_t x) { ArrowBufferAppend(obj_.get(), &x, sizeof(x)); }
uint8_t* data() { return obj_.data; }
int64_t size() { return obj_.size_bytes(); }
private:
UniqueBuffer obj_;
}
```
...in the C++ bindings? If we do, what do we use for error handling?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]