MCPcopy Create free account
hub / github.com/Dobiasd/FunctionalPlus / is_whitespace

Function is_whitespace

include/fplus/string_tools.hpp:32–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30// Is character a whitespace.
31template <typename String>
32bool is_whitespace(const typename String::value_type& c)
33{
34 return (c == 32 || is_in_interval(9, 14, static_cast<int>(c)));
35}
36
37// API search type: is_line_break : Char -> Bool
38// fwd bind count: 0

Callers

nothing calls this directly

Calls 1

is_in_intervalFunction · 0.70

Tested by

no test coverage detected