On 01.11.19 22:22, Zach Laine via Boost-users wrote:
Moreover, I don't know of a great use case for a boost::text::is_alpha(). Specifically, it seams that if you are looking for alphabetical characters, you are usually doing something like word-breaking, for which there is already an algorithm, doing a regex match, for which is_alpha() is insufficient, etc. I'm open to hearing about such use cases, of course.
Filtering text input. Parsing programming languages or data description
languages. Gathering statistics on a piece of text.
My own codebase has has four instances of #include <cctype> and three
instances of #include