(args []string)
| 70 | } |
| 71 | |
| 72 | func parseScanArgs(args []string) (cursor []byte, match string, count int, desc bool, err error) { |
| 73 | cursor, match, count, desc, err = parseXScanArgs(args) |
| 74 | if bytes.Equal(cursor, nilCursorRedis) { |
| 75 | cursor = nilCursorLedis |
| 76 | } |
| 77 | return |
| 78 | } |
| 79 | |
| 80 | type scanCommandGroup struct { |
| 81 | lastCursor []byte |
nothing calls this directly
no test coverage detected