modify bitmap.hpp

This commit is contained in:
zsxxsz 2017-08-23 22:35:24 +08:00
parent 5b0cdc1fc9
commit 6c7fa88358
2 changed files with 6 additions and 10 deletions

View File

@ -355,11 +355,12 @@ public:
* the key of the list
* @param buf {string&}
* store the element pop from list
* @return {int} 1 -- -1 --
*
* return as below:
* 1: get a element successfully
* -1: error happened, or not a list, or the list is empty.
* @return {int} >0 --
* -1 --
* return value as below:
* >0: get one element successfully and return the length of element
* -1: error happened, or the oject is not a list specified
* by the key, or the list specified by key is empty
*/
int rpop(const char* key, string& buf);

View File

@ -2,11 +2,6 @@
namespace acl {
/**
* @author wanghaibin@qiyi.com
* @date 2017-08-16
*/
class bitmap
{
public: