Module org.scijava.ops.engine
Interface LossReporter<T,R>
-
- Type Parameters:
T- - theTypethat we are converting fromR- - theTypethat we are converting to
- All Superinterfaces:
BiFunction<Nil<T>,Nil<R>,Double>
- All Known Subinterfaces:
LosslessReporter<T,R>
- All Known Implementing Classes:
IdentityLossReporter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface LossReporter<T,R> extends BiFunction<Nil<T>,Nil<R>,Double>
- Author:
- Gabriel Selzer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Doubleapply(Nil<T> from, Nil<R> to)-
Methods inherited from interface java.util.function.BiFunction
andThen
-
-