| 710 | // buffer.cpp |
| 711 | r_vec_size Buffer__capacity(const std::shared_ptr<arrow::Buffer>& buffer); |
| 712 | extern "C" SEXP _arrow_Buffer__capacity(SEXP buffer_sexp){ |
| 713 | BEGIN_CPP11 |
| 714 | arrow::r::Input<const std::shared_ptr<arrow::Buffer>&>::type buffer(buffer_sexp); |
| 715 | return cpp11::as_sexp(Buffer__capacity(buffer)); |
| 716 | END_CPP11 |
| 717 | } |
| 718 | // buffer.cpp |
| 719 | r_vec_size Buffer__size(const std::shared_ptr<arrow::Buffer>& buffer); |
| 720 | extern "C" SEXP _arrow_Buffer__size(SEXP buffer_sexp){ |
nothing calls this directly
no test coverage detected