Created
February 26, 2017 16:38
-
-
Save stryku/b83325bff154e534bc7af4efa2c05358 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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