Package ghidra.util

Interface LongIterator


public interface LongIterator
Iterator over a set of Java-type long values.
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    static final LongIterator
    A default implementation of LongIterator that has no values.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    boolean
    Return true if there is a next long in this iterator.
    boolean
    Return true if there a previous long in this iterator.
    long
    Get the next long value in this iterator.
    long
    Get the previous long value in this iterator.
  • Field Details Link icon

    • EMPTY Link icon

      static final LongIterator EMPTY
      A default implementation of LongIterator that has no values.
  • Method Details Link icon

    • hasNext Link icon

      boolean hasNext()
      Return true if there is a next long in this iterator.
    • next Link icon

      long next()
      Get the next long value in this iterator.
    • hasPrevious Link icon

      boolean hasPrevious()
      Return true if there a previous long in this iterator.
    • previous Link icon

      long previous()
      Get the previous long value in this iterator.