List of usage examples for java.util.function IntConsumer andThen
default IntConsumer andThen(IntConsumer after)
From source file:Main.java
public static void main(String[] args) { IntConsumer ic = (x) -> System.out.println(x); ic.andThen(ic).accept(3); }