Return the value at pos, using the configured encoding. */
| 75 | |
| 76 | /* Return the value at pos, using the configured encoding. */ |
| 77 | static int64_t _intsetGet(intset *is, int pos) { |
| 78 | return _intsetGetEncoded(is,pos,intrev32ifbe(is->encoding)); |
| 79 | } |
| 80 | |
| 81 | /* Set the value at pos, using the configured encoding. */ |
| 82 | static void _intsetSet(intset *is, int pos, int64_t value) { |
no test coverage detected