! @brief Get number of bytes between consecutive memory elements in buffer @details Elements in a memory buffer do not have to be consecutive. They can also be spaced at regular intervals. This allows a value to be picked out of an array of C++ structures (the stride would be the size of the structure). In the case that the element values are stored consecutively in memory, the stride equals the
| 456 | @return Number of bytes between consecutive memory elements in buffer |
| 457 | */ |
| 458 | size_t SourceDestBuffer::stride() const |
| 459 | { |
| 460 | return impl_->stride(); |
| 461 | } |
| 462 | |
| 463 | /*! |
| 464 | @brief Diagnostic function to print internal state of object to output stream in an indented format. |