-
IDequeBuilder.add(T value)
Adds the specified value to the values included in the collection when build() is called.
Adds all values in the Collection to the values included in the collection when build() is called.
Adds all values in the Iterator to the values included in the collection when build() is called.
IDequeBuilder.addAll(K... source)
Adds all values in the array to the values included in the collection when build() is called.
Adds all values in the Indexed to the values included in the collection when build() is called.
IDequeBuilder.addAll(Indexed<? extends T> source,
int offset,
int limit)
Adds all values in the specified range of Indexed to the values included in the collection when build() is called.
Produces a Builder for efficiently constructing an IDeque.
-
ArrayDeque.Builder.clear()