Searched defs:ForEachOp (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DForEachOps.java73 return new ForEachOp.OfRef<>(action, ordered);
88 return new ForEachOp.OfInt(action, ordered);
103 return new ForEachOp.OfLong(action, ordered);
118 return new ForEachOp.OfDouble(action, ordered);
133 static abstract class ForEachOp<T> class in class:ForEachOps
137 protected ForEachOp(boolean ordered) { method in class:ForEachOps.ForEachOp
174 static final class OfRef<T> extends ForEachOp<T> {
189 static final class OfInt extends ForEachOp<Integer>
210 static final class OfLong extends ForEachOp<Long>
231 static final class OfDouble extends ForEachOp<Doubl
[all...]

Completed in 4 milliseconds