Skip to content

Instantly share code, notes, and snippets.

@stryku
Last active March 26, 2017 18:54
Show Gist options
  • Save stryku/25c7e4ad40c27f3a6f7e7368fc654367 to your computer and use it in GitHub Desktop.
Save stryku/25c7e4ad40c27f3a6f7e7368fc654367 to your computer and use it in GitHub Desktop.
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