Skip to content

Instantly share code, notes, and snippets.

View mbloms's full-sized avatar

Mikael Blomstrand mbloms

View GitHub Profile
@considerate
considerate / Function.class.java
Created May 21, 2017 20:54
Small example of Java Functions without generics.
Compiled from "Function.java"
public abstract class Function {
public Function();
Code:
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: return
public abstract java.lang.Object apply(java.lang.Object);
}