Copy values starting from index `start` into `out_data`
| 782 | |
| 783 | // Copy values starting from index `start` into `out_data` |
| 784 | void CopyValues(int32_t start, uint8_t* out_data) const { |
| 785 | CopyValues(start, -1, out_data); |
| 786 | } |
| 787 | |
| 788 | // Same as above, but check output size in debug mode |
| 789 | void CopyValues(int32_t start, int64_t out_size, uint8_t* out_data) const { |
nothing calls this directly
no test coverage detected