jfun.parsec
Interface Mapn<R>

All Superinterfaces:
java.io.Serializable

public interface Mapn<R>
extends java.io.Serializable

Responsible for mapping an array of n objects to one object.

Author:
Ben Yu Dec 1, 2004

Method Summary
 R map(java.lang.Object... vals)
          Map n objects to one.
 

Method Detail

map

R map(java.lang.Object... vals)
Map n objects to one.

Parameters:
vals - the array of objects to map.
Returns:
the map result.