| 192 | inline bool RedisReply::is_string() const |
| 193 | { return _type == REDIS_REPLY_STRING || _type == REDIS_REPLY_STATUS; } |
| 194 | inline bool RedisReply::is_array() const { return _type == REDIS_REPLY_ARRAY; } |
| 195 | |
| 196 | inline int64_t RedisReply::integer() const { |
| 197 | if (is_integer()) { |
no outgoing calls