| 756 | using Base::SetRepresentation; |
| 757 | |
| 758 | static SEXP Make(const std::shared_ptr<ChunkedArray>& chunked_array) { |
| 759 | string_viewer().set_strip_out_nuls(GetBoolOption("arrow.skip_nul", false)); |
| 760 | return Base::Make(chunked_array); |
| 761 | } |
| 762 | |
| 763 | // Helper class to convert to R strings. We declare one of these for the |
| 764 | // class to avoid having to stack-allocate one for every STRING_ELT call. |
nothing calls this directly
no test coverage detected