14 return 200 <= s and s <= 299;
24 return 400 <= s and s <= 499;
34 return 500 <= s and s <= 599;
constexpr bool IsClientError(Status s)
several status codes considered client error, so check if it is among them
constexpr bool IsOK(Status s)
several status codes considered OK, so check if it is among them
constexpr bool IsServerError(Status s)
several status codes considered Server Error, so check if it is among them