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

com.meliorbis.numerics.generic.UnaryOpPerformer Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
package com.meliorbis.numerics.generic;

/**
 * Implementing classes accept an operation, and perform it in a implementation-defined way,
 * for example for each member of a collection. The result is implementation dependend and may,
 * for example, be a collection of the results of each time the op was performed
 */
public interface UnaryOpPerformer
{
     R perform(UnaryOp op_) throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy