Interface VectorEntry


public interface VectorEntry
An entry of a vector. Returned by the iterators over a vector structure
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    get()
    Returns the value at the current index
    int
    Returns the current index
    void
    set(double value)
    Sets the value at the current index
  • Method Details

    • index

      int index()
      Returns the current index
    • get

      double get()
      Returns the value at the current index
    • set

      void set(double value)
      Sets the value at the current index