IDynamicBufferResource::download - dpw105f18/papago-api GitHub Wiki
template<typename T> std::vector<T> download()Copies the data from the entire buffer into a vector and returns the vector.
A vector filled with the data from the buffer formatted as type T
template<typename T> T download(size_t index);Copies the data from an element of the buffer onto the CPU and returns it
Element at index formatted as type T