* @brief Exports this entire view. Not an STL function, but useful for concatenations. * The STL variant expects at least two arguments. */
| 1916 | * The STL variant expects at least two arguments. |
| 1917 | */ |
| 1918 | size_type copy(value_type *destination) const noexcept { |
| 1919 | sz_copy((sz_ptr_t)destination, start_, length_); |
| 1920 | return length_; |
| 1921 | } |
| 1922 | |
| 1923 | #pragma endregion |
| 1924 |