Interface Func1<P,R>

All Superinterfaces:
java.util.function.Function<P,R>
All Known Implementing Classes:
MutableDelta
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 Func1<P,R> extends java.util.function.Function<P,R>
Interface for functions that take a single parameter.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(P value)
     

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • Method Details

    • apply

      R apply(P value)
      Specified by:
      apply in interface java.util.function.Function<P,R>