Skip to content

Instantly share code, notes, and snippets.

View jthoenes's full-sized avatar
👣

Johannes Thönes jthoenes

👣
View GitHub Profile
@jthoenes
jthoenes / LambdaIntro.java
Created August 1, 2012 10:32
Testing the Lambda Water
package net.jthoenes.blog.spike.lambda;
import java.util.Arrays;
import java.util.List;
public class LambdaIntro {
public static interface ItemWithIndexVisitor<E> {
public void visit(E item, int index);