2015-11-11 20:20:04 -08:00
|
|
|
|
// streams/Duplicator.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-11-11 20:20:04 -08:00
|
|
|
|
import java.util.stream.*;
|
|
|
|
|
|
|
|
|
|
public class Duplicator {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Stream.generate(() -> "duplicate")
|
|
|
|
|
.limit(3)
|
|
|
|
|
.forEach(System.out::println);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Output:
|
|
|
|
|
duplicate
|
|
|
|
|
duplicate
|
|
|
|
|
duplicate
|
|
|
|
|
*/
|