| 654 | |
| 655 | inline bool is_na() const { return data == NA_STRING; } |
| 656 | inline void setBuffer() { |
| 657 | if (!buffer_ready) { |
| 658 | buffer = char_nocheck(data); |
| 659 | buffer_ready = true; |
| 660 | } |
| 661 | } |
| 662 | inline void setData() { |
| 663 | RCPP_STRING_DEBUG("setData"); |
| 664 | if (!valid) { |
nothing calls this directly
no test coverage detected