1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-07-18 16:44:11 +00:00

Fix SCAN iteration.

This commit is contained in:
King_DuckZ 2016-06-13 10:57:42 +01:00
parent c1e79c435b
commit e0a82cce2d
7 changed files with 54 additions and 12 deletions

View file

@ -71,6 +71,7 @@ namespace redis {
RedisReplyType forward_scan_command ( typename std::enable_if<HasScanTargetMethod<T>::value, int>::type parDummy );
template <typename T>
RedisReplyType forward_scan_command ( typename std::enable_if<not HasScanTargetMethod<T>::value, int>::type parDummy );
bool is_end ( void ) const;
void increment ( void );
bool equal ( const ScanIterator& parOther ) const;