Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Created January 1, 2017 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilpropheta/5e674260966f749cd7ed94ead89818c4 to your computer and use it in GitHub Desktop.
Save ilpropheta/5e674260966f749cd7ed94ead89818c4 to your computer and use it in GitHub Desktop.
string whole = "1234987";
string_view s { whole.data(), 4 }; // 1234
auto i = atoi(s.data()) // ooops...1234987
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment