Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Created January 2, 2017 20:27
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/4118be7867a16e1d2cb126cb94d38d69 to your computer and use it in GitHub Desktop.
Save ilpropheta/4118be7867a16e1d2cb126cb94d38d69 to your computer and use it in GitHub Desktop.
int to_int(string_view src)
{
int dest;
if (parse(cbegin(src), cend(src), int_, dest))
return dest;
// error handling
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment