2#include "gaia/config/config.h"
4#include "gaia/core/span.h"
8 inline bool is_whitespace(
char c) {
9 return c ==
' ' || (c >=
'\t' && c <=
'\r');
17 while (is_whitespace(expr[beg]))
19 uint32_t end = (uint32_t)expr.size() - 1;
20 while (end > beg && is_whitespace(expr[end]))
22 return expr.subspan(beg, end - beg + 1);
Definition span_impl.h:99
Checks if endianess was detected correctly at compile-time.
Definition bitset.h:9