public class DoComp0 extends DoComp
Constructor and Description |
---|
DoComp0(org.pcollections.PStack<DoBuilderModule.Entry> assigned) |
Modifier and Type | Method and Description |
---|---|
<T1> DoComp1<T1> |
add(AnyM<T1> o)
Add a AnyM as next nested level in the comprehension
|
<T1 extends java.lang.String> |
add(java.io.BufferedReader o)
Add a BufferedReader as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(java.util.concurrent.Callable<T1> o)
Add a Callable as next nested level in the comprehension
Will behave as a CompletableFuture i.e.
|
DoComp1<java.lang.Character> |
add(java.lang.CharSequence seq) |
<T1> DoComp1<T1> |
add(java.util.Collection<T1> o)
Add a Collection as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(java.util.concurrent.CompletableFuture<T1> o)
Add a CompletableFuture as next nested level in the comprehension
|
<T1 extends java.lang.String> |
add(java.io.File o)
Add a File as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(java.lang.Iterable<T1> o)
Add a Iterable as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(java.util.Iterator<T1> o)
Add a Iterator as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(java.util.Optional<T1> o)
Add a Optional as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(ReactiveSeq<T1> o)
Add a TraversableM as next nested level in the comprehension
|
<T1> DoComp1<T1> |
add(Reader<?,T1> seq) |
<T1> DoComp1<T1> |
add(java.util.function.Supplier<T1> o)
Add a Supplier as next nested level in the comprehension
Will behave as a CompletableFuture i.e.
|
<T1 extends java.lang.String> |
add(java.net.URL o)
Add a URL as next nested level in the comprehension
|
<T1> DoComp1<T1> |
addStream(java.util.stream.Stream<T1> o)
Add a Stream as next nested level in the comprehension
|
<T1> DoComp1<T1> |
addValues(T1... values) |
DoComp1<java.lang.Integer> |
times(int times) |
addToAssigned, createEntry, getAssigned, getOrgType, setAssigned, yieldInternal
public DoComp0(org.pcollections.PStack<DoBuilderModule.Entry> assigned)
public <T1> DoComp1<T1> addValues(T1... values)
public DoComp1<java.lang.Character> add(java.lang.CharSequence seq)
public DoComp1<java.lang.Integer> times(int times)
public <T1> DoComp1<T1> add(java.lang.Iterable<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(java.util.Iterator<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> addStream(java.util.stream.Stream<T1> o)
Do.add(stream)
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(java.util.Optional<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(java.util.concurrent.CompletableFuture<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(AnyM<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(ReactiveSeq<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(java.util.concurrent.Callable<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(java.util.function.Supplier<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1> DoComp1<T1> add(java.util.Collection<T1> o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1 extends java.lang.String> DoComp1<T1> add(java.io.File o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1 extends java.lang.String> DoComp1<T1> add(java.net.URL o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehensionpublic <T1 extends java.lang.String> DoComp1<T1> add(java.io.BufferedReader o)
Do
.filter( -> i1>5)
.yield( -> );
o
- Defines next level in comprehension