Skip to content

Instantly share code, notes, and snippets.

@nulldatamap
Created February 10, 2014 12:52
Show Gist options
  • Save nulldatamap/8915365 to your computer and use it in GitHub Desktop.
Save nulldatamap/8915365 to your computer and use it in GitHub Desktop.
public class Duple< T, O > {
public T first;
public O second;
public Duple( T f, O l ) {
this.first = f;
this.second = l;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment