com.meliorbis.numerics.generic.UnaryOpPerformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
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;
}