Package com.badlogic.gdx.utils
Class SortedIntList.Node<E>
- java.lang.Object
-
- com.badlogic.gdx.utils.SortedIntList.Node<E>
-
- Enclosing class:
- SortedIntList<E>
public static class SortedIntList.Node<E> extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description intindexIndex value in listprotected SortedIntList.Node<E>nNode next to thisprotected SortedIntList.Node<E>pNode previous to thisEvalueValue held
-
Constructor Summary
Constructors Constructor Description Node()
-
-
-
Field Detail
-
p
protected SortedIntList.Node<E> p
Node previous to this
-
n
protected SortedIntList.Node<E> n
Node next to this
-
value
public E value
Value held
-
index
public int index
Index value in list
-
-