Package net.runelite.api
Interface Deque<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addLast(T t)
Add a new element to the end of the dequevoid
clear()
clear the deque-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
addLast
void addLast(T t)
Add a new element to the end of the deque- Parameters:
t
- the element
-
clear
void clear()
clear the deque
-
-