(ctx context.Context, key string, index uint64, values ...string)
| 12 | // Redis array supports index range [0, math.MaxUint64-1), so index parameters use uint64. |
| 13 | type ArrayCmdable interface { |
| 14 | ARSet(ctx context.Context, key string, index uint64, values ...string) *IntCmd |
| 15 | ARGet(ctx context.Context, key string, index uint64) *StringCmd |
| 16 | ARGetRange(ctx context.Context, key string, start, end uint64) *SliceCmd |
| 17 | ARMGet(ctx context.Context, key string, indexes ...uint64) *SliceCmd |
no outgoing calls
no test coverage detected