com.meliorbis.numerics.generic.MultiValuedNaryOp 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;
/**
* An operation with n inputs and multiple outputs
*
* @author Tobias Grasl
*
* @param The input type of the operation, and T[] will be its output type
* @param The exception thrown by the operation
*/
@FunctionalInterface
public interface MultiValuedNaryOp extends NaryOp
{
}