Package org.javimmutable.collections
Class IDeques
java.lang.Object
org.javimmutable.collections.IDeques
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> IDeque
<T> Efficiently produces aIList
containing all of the values in source built atop a balanced binary tree.static <T> IDeque
<T> Efficiently produces aIList
containing all of the values in source built atop a balanced binary tree.static <T> IDequeBuilder
<T> builder()
Produces a Builder for efficiently constructing an IDeque.static <T> IDeque
<T> of()
Produces an emptyIList
built atop a balanced binary tree.static <T> IDeque
<T> of
(T... values) Efficiently produces aIList
containing all of the specified values built atop a balanced binary tree.
-
Method Details
-
of
Produces an emptyIList
built atop a balanced binary tree. -
of
Efficiently produces aIList
containing all of the specified values built atop a balanced binary tree. -
allOf
Efficiently produces aIList
containing all of the values in source built atop a balanced binary tree. -
allOf
Efficiently produces aIList
containing all of the values in source built atop a balanced binary tree. -
builder
Produces a Builder for efficiently constructing an IDeque.
-