Skip to content

Instantly share code, notes, and snippets.

@bionicbeagle
Created January 27, 2013 09:57
Show Gist options
  • Save bionicbeagle/4647628 to your computer and use it in GitHub Desktop.
Save bionicbeagle/4647628 to your computer and use it in GitHub Desktop.
Super optimized isNumber()
bool isNumber(const char number)
{
std::string tmp;
tmp += number;
return std::string::npos != findIgnoreCase("0123456789", tmp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment