Add a new element to the digest. This function can be called multiple times * one element after the other, for all the elements that constitute a given * data structure. The function call must be followed by the call to * `RedisModule_DigestEndSequence` eventually, when all the elements that are * always in a given order are added. See the Redis Modules data types * documentation for more inf
| 4948 | * |
| 4949 | */ |
| 4950 | void RM_DigestAddStringBuffer(RedisModuleDigest *md, unsigned char *ele, size_t len) { |
| 4951 | mixDigest(md->o,ele,len); |
| 4952 | } |
| 4953 | |
| 4954 | /* Like `RedisModule_DigestAddStringBuffer()` but takes a long long as input |
| 4955 | * that gets converted into a string before adding it to the digest. */ |
nothing calls this directly
no test coverage detected