(package private) static java.math.BigDecimal |
IteratorModule.BigDecimalHelper.asDecimal(double number) |
|
java.util.List<T> |
Array.asJava() |
|
Array<T> |
Array.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<java.lang.Character> |
CharSeq.asJava() |
|
CharSeq |
CharSeq.asJava(@NonNull java.util.function.Consumer<? super java.util.List<java.lang.Character>> action) |
|
(package private) static <T,C extends Seq<T>> C |
Collections.asJava(C source,
java.util.function.Consumer<? super java.util.List<T>> action,
JavaConverters.ChangePolicy changePolicy) |
|
IndexedSeq<T> |
IndexedSeq.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
(package private) static <T,C extends Seq<T>> JavaConverters.ListView<T,C> |
JavaConverters.asJava(C seq,
JavaConverters.ChangePolicy changePolicy) |
|
LinearSeq<T> |
LinearSeq.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
default java.util.List<T> |
List.asJava() |
|
default List<T> |
List.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Queue.asJava() |
|
Queue<T> |
Queue.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Seq.asJava() |
Returns an immutable List view of this Seq.
|
Seq<T> |
Seq.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
Creates an immutable List view of this Seq
and passes it to the given action.
|
default java.util.List<T> |
Stream.asJava() |
|
default Stream<T> |
Stream.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Vector.asJava() |
|
Vector<T> |
Vector.asJava(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Array.asJavaMutable() |
|
Array<T> |
Array.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<java.lang.Character> |
CharSeq.asJavaMutable() |
|
CharSeq |
CharSeq.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<java.lang.Character>> action) |
|
IndexedSeq<T> |
IndexedSeq.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
LinearSeq<T> |
LinearSeq.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
default java.util.List<T> |
List.asJavaMutable() |
|
default List<T> |
List.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Queue.asJavaMutable() |
|
Queue<T> |
Queue.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Seq.asJavaMutable() |
Returns a mutable List view of this Seq.
|
Seq<T> |
Seq.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
Creates a mutable List view of this Seq
and passes it to the given action.
|
default java.util.List<T> |
Stream.asJavaMutable() |
|
default Stream<T> |
Stream.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
java.util.List<T> |
Vector.asJavaMutable() |
|
Vector<T> |
Vector.asJavaMutable(@NonNull java.util.function.Consumer<? super java.util.List<T>> action) |
|
static <T> PriorityQueue<T> |
PriorityQueue.fill(int size,
@NonNull java.util.function.Supplier<? extends T> supplier) |
Returns a PriorityQueue containing size values supplied by a given Supplier supplier.
|
static <T> PriorityQueue<T> |
PriorityQueue.fill(int size,
T element) |
|
int |
CharSeq.parseUnsignedInt() |
Parses this CharSeq as a unsigned decimal int by calling Integer.parseUnsignedInt(String).
|
int |
CharSeq.parseUnsignedInt(int radix) |
Parses this CharSeq as a unsigned int in the specified radix
by calling Integer.parseUnsignedInt(String, int).
|
long |
CharSeq.parseUnsignedLong() |
Parses this CharSeq as a unsigned decimal long by calling Long.parseUnsignedLong(String).
|
long |
CharSeq.parseUnsignedLong(int radix) |
Parses this CharSeq as a unsigned long in the specified radix
by calling Long.parseUnsignedLong(String, int).
|
static Array<java.lang.Double> |
Array.rangeBy(double from,
double toExclusive,
double step) |
Creates an Array of double numbers starting from from, extending to toExclusive - 1,
with step.
|
static HashSet<java.lang.Double> |
HashSet.rangeBy(double from,
double toExclusive,
double step) |
Creates a HashSet of double numbers starting from from, extending to toExclusive - 1,
with step.
|
static Iterator<java.lang.Double> |
Iterator.rangeBy(double from,
double toExclusive,
double step) |
Creates an Iterator of double values starting from from (inclusive)
up to toExclusive (exclusive), advancing by the specified step.
|
static LinkedHashSet<java.lang.Double> |
LinkedHashSet.rangeBy(double from,
double toExclusive,
double step) |
Creates a LinkedHashSet of double numbers starting from from, extending to toExclusive - 1,
with step.
|
static List<java.lang.Double> |
List.rangeBy(double from,
double toExclusive,
double step) |
Creates a List of double numbers starting from from, extending up to but not including toExclusive,
with step.
|
static Queue<java.lang.Double> |
Queue.rangeBy(double from,
double toExclusive,
double step) |
Creates a Queue of double values starting from from (inclusive)
up to toExclusive (exclusive), advancing by the specified step.
|
static Stream<java.lang.Double> |
Stream.rangeBy(double from,
double toExclusive,
double step) |
Creates a Stream of double numbers starting from from, extending up to but not including toExclusive,
with step.
|
static TreeSet<java.lang.Double> |
TreeSet.rangeBy(double from,
double toExclusive,
double step) |
Creates a TreeSet of double numbers starting from from, extending up to (but not including) toExclusive,
with step.
|
static Vector<java.lang.Double> |
Vector.rangeBy(double from,
double toExclusive,
double step) |
Creates a Vector of double numbers starting from from, extending up to (but not including) toExclusive,
with step.
|
static Array<java.lang.Double> |
Array.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates an Array of double numbers starting from from, extending to toInclusive,
with step.
|
static HashSet<java.lang.Double> |
HashSet.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a HashSet of double numbers starting from from, extending to toInclusive,
with step.
|
static Iterator<java.lang.Double> |
Iterator.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates an Iterator of double values starting from from (inclusive)
up to toInclusive (inclusive), advancing by the specified step.
|
static LinkedHashSet<java.lang.Double> |
LinkedHashSet.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a LinkedHashSet of double numbers starting from from, extending to toInclusive,
with step.
|
static List<java.lang.Double> |
List.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a List of double numbers starting from from, extending to toInclusive,
with step.
|
static Queue<java.lang.Double> |
Queue.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a Queue of double values starting from from (inclusive)
up to toInclusive (inclusive), advancing by the specified step.
|
static Stream<java.lang.Double> |
Stream.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a Stream of double values starting from from, extending to toInclusive, with step.
|
static TreeSet<java.lang.Double> |
TreeSet.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a TreeSet of double numbers starting from from, extending to toInclusive,
with step.
|
static Vector<java.lang.Double> |
Vector.rangeClosedBy(double from,
double toInclusive,
double step) |
Creates a Vector of double numbers starting from from, extending to toInclusive,
with step.
|
private void |
HashSet.readObject(java.io.ObjectInputStream stream) |
readObject method for the serialization proxy pattern.
|
private void |
LinkedHashSet.readObject(java.io.ObjectInputStream stream) |
readObject method for the serialization proxy pattern.
|
private void |
List.Cons.readObject(java.io.ObjectInputStream stream) |
readObject method for the serialization proxy pattern.
|
private void |
StreamModule.AppendElements.readObject(java.io.ObjectInputStream stream) |
|
private void |
StreamModule.ConsImpl.readObject(java.io.ObjectInputStream stream) |
|
private void |
Tree.Node.readObject(java.io.ObjectInputStream stream) |
readObject method for the serialization proxy pattern.
|
static <T> PriorityQueue<T> |
PriorityQueue.tabulate(int size,
@NonNull java.util.function.Function<? super java.lang.Integer,? extends T> function) |
Returns a PriorityQueue containing size values of a given Function function
over a range of integer values from 0 to size - 1.
|
private java.lang.Object |
HashSet.writeReplace() |
writeReplace method for the serialization proxy pattern.
|
private java.lang.Object |
LinkedHashSet.writeReplace() |
writeReplace method for the serialization proxy pattern.
|
private java.lang.Object |
List.Cons.writeReplace() |
writeReplace method for the serialization proxy pattern.
|
private java.lang.Object |
StreamModule.AppendElements.writeReplace() |
|
private java.lang.Object |
StreamModule.ConsImpl.writeReplace() |
|
private java.lang.Object |
Tree.Node.writeReplace() |
writeReplace method for the serialization proxy pattern.
|