All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fj.data.IO Maven / Gradle / Ivy

package fj.data;

/**
 * Created by MarkPerry on 19/06/2014.
 */

import java.io.IOException;

/**
 * IO monad for processing files
 *
 * @author Martin Grotzke
 *
 * @param  the type of the result produced by the IO
 */
public interface IO {

	public A run() throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy