std::experimental::basic_string_view<CharT,Traits>::copy
Min standard notice:
Copies the substring [pos, pos + rcount) to the character string pointed to by dest, where rcount is the smaller of count and size() - pos.
# Declarations
size_type copy( CharT* dest,
size_type count,
size_type pos = 0) const;
(library fundamentals TS)
# Parameters
dest: pointer to the destination character stringpos: position of the first charactercount: requested substring length
# Return value
Number of characters copied