/* File: Function3.java * Contains: An interface for functions of three arguments * Author: Jeff Dalton * Created: February 1998 * Updated: Wed Feb 11 01:19:48 1998 by Jeff Dalton * Copyright: (c) 1998, AIAI, University of Edinburgh */ package ix.util; /** * An interface for functions of three arguments. */ public interface Function3 { Object funcall(Object a, Object b, Object c); }