Skip to content

Instantly share code, notes, and snippets.

@vitran96
Created March 18, 2021 05:17
Show Gist options
  • Save vitran96/95d71104f37a9193f918d8edafa304c5 to your computer and use it in GitHub Desktop.
Save vitran96/95d71104f37a9193f918d8edafa304c5 to your computer and use it in GitHub Desktop.
#include <cctype>
#include <algorithm>
#include <string>
inline bool isBlank(const std::string& s)
{
return std::all_of(s.cbegin(),s.cend(),[](char c) { return std::isspace(c); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment