| 328 | } |
| 329 | |
| 330 | int redis_command::result_number(bool* success /* = NULL */) const |
| 331 | { |
| 332 | return result_ ? result_->get_integer(success) : 0; |
| 333 | } |
| 334 | |
| 335 | long long int redis_command::result_number64(bool* success /* = NULL */) const |
| 336 | { |
nothing calls this directly
no test coverage detected