Last active
March 26, 2017 18:54
-
-
Save stryku/25c7e4ad40c27f3a6f7e7368fc654367 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
template <char ...str_chars, typename current_token> | |
struct get_token_impl<string<' ', str_chars...>, current_token> | |
{ | |
using result_token = current_token; | |
using rest_of_string = string<str_chars...>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment