14 lines
268 B
Java
14 lines
268 B
Java
|
// streams/Operation.java
|
||
|
import java.util.*;
|
||
|
|
||
|
@FunctionalInterface
|
||
|
public interface Operation {
|
||
|
void execute();
|
||
|
static void runOps(List<Operation> ops) {
|
||
|
ops.forEach(Operation::execute);
|
||
|
}
|
||
|
static void show(String msg) {
|
||
|
System.out.println(msg);
|
||
|
}
|
||
|
}
|