Interface AbstractHyperLogLog.RunLenIterator

Enclosing class:
AbstractHyperLogLog

public static interface AbstractHyperLogLog.RunLenIterator
Iterator over a HyperLogLog register
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Moves the iterator to the next element if it exists.
    byte
    Value of the register.
  • Method Details

    • next

      boolean next()
      Moves the iterator to the next element if it exists.
      Returns:
      true if there is a next register, else false.
    • value

      byte value()
      Value of the register.
      Returns:
      the current value of the register.