| 276 | } |
| 277 | |
| 278 | const redis_result* redis_result::get_child(size_t i) const |
| 279 | { |
| 280 | if (children_ == NULL || i >= children_idx_) { |
| 281 | return NULL; |
| 282 | } |
| 283 | return children_[i]; |
| 284 | } |
| 285 | |
| 286 | const redis_result** redis_result::get_children(size_t* size) const |
| 287 | { |
no outgoing calls
no test coverage detected