Skips to the first element >= value whose position is greater or equal to the current position. Requires that value >= value() (or that the reader is positioned before the first element). Returns false if no such element exists. If kCanBeAtValue is false, the requirement above becomes value > value().
Declared in <folly/compression/elias_fano/EliasFanoCoding.h>
template<bool kCanBeAtValue = true>
bool
skipTo(ValueType value);
True if an element >= value was found.
| Name | Description |
|---|---|
| value | The value to skip to. |