Skip to content
Snippets Groups Projects
Field.java 195 B
Newer Older
  • Learn to ignore specific revisions
  • package search;
    
    
    Haley Glavina's avatar
    Haley Glavina committed
    // The interface for a function that returns one field (piece of data) from a record
    
    public interface Field<Key extends Comparable<Key>, Value> {
    	public Key field(Value a1);