Interface FloatIndexedContainer

All Superinterfaces:
FloatCollection, FloatContainer, Iterable<FloatCursor>, RandomAccess
All Known Implementing Classes:
FloatArrayList, FloatStack

@Generated(date="2024-02-21T00:00:00+0000", value="KTypeIndexedContainer.java") public interface FloatIndexedContainer extends FloatCollection, RandomAccess
An indexed container provides random access to elements based on an index. Indexes are zero-based.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(float e1)
    Adds an element to the end of this container (the last index is incremented by one).
    float
    get(int index)
     
    int
    indexOf(float e1)
    Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
    void
    insert(int index, float e1)
    Inserts the specified element at the specified position in this list.
    int
    lastIndexOf(float e1)
    Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.
    float
    remove(int index)
    Removes the element at the specified position in this container and returns it.
    int
    removeFirst(float e1)
    Removes the first element that equals e1, returning its deleted position or -1 if the element was not found.
    int
    removeLast(float e1)
    Removes the last element that equals e1, returning its deleted position or -1 if the element was not found.
    void
    removeRange(int fromIndex, int toIndex)
    Removes from this container all of the elements with indexes between fromIndex, inclusive, and toIndex, exclusive.
    float
    set(int index, float e1)
    Replaces the element at the specified position in this list with the specified element.

    Methods inherited from interface com.carrotsearch.hppc.FloatCollection

    clear, release, removeAll, removeAll, removeAll, retainAll, retainAll

    Methods inherited from interface com.carrotsearch.hppc.FloatContainer

    contains, forEach, isEmpty, iterator, size, toArray

    Methods inherited from interface java.lang.Iterable

    forEach, spliterator
  • Method Details

    • removeFirst

      int removeFirst(float e1)
      Removes the first element that equals e1, returning its deleted position or -1 if the element was not found.
    • removeLast

      int removeLast(float e1)
      Removes the last element that equals e1, returning its deleted position or -1 if the element was not found.
    • indexOf

      int indexOf(float e1)
      Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
    • lastIndexOf

      int lastIndexOf(float e1)
      Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.
    • add

      void add(float e1)
      Adds an element to the end of this container (the last index is incremented by one).
    • insert

      void insert(int index, float e1)
      Inserts the specified element at the specified position in this list.
      Parameters:
      index - The index at which the element should be inserted, shifting any existing and subsequent elements to the right.
    • set

      float set(int index, float e1)
      Replaces the element at the specified position in this list with the specified element.
      Returns:
      Returns the previous value in the list.
    • get

      float get(int index)
      Returns:
      Returns the element at index index from the list.
    • remove

      float remove(int index)
      Removes the element at the specified position in this container and returns it.
      See Also:
    • removeRange

      void removeRange(int fromIndex, int toIndex)
      Removes from this container all of the elements with indexes between fromIndex, inclusive, and toIndex, exclusive.