Skip to content

Instantly share code, notes, and snippets.

@stryku
Created February 26, 2017 16:38
Show Gist options
  • Save stryku/b83325bff154e534bc7af4efa2c05358 to your computer and use it in GitHub Desktop.
Save stryku/b83325bff154e534bc7af4efa2c05358 to your computer and use it in GitHub Desktop.
string_to_int_impl< string< '-', '2', '6', '3' >, 1, 0> // this will hit 3rd specialization
string_to_int_impl< string< '6', '3' >, -1, 2> // this will hit the 2nd
string_to_int_impl< string< '3' >, -1, 26> // this will hit the 2nd
string_to_int_impl< string<>, -1, 263> // this will hit first one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment