Interface TCEFunction<T,R>

Type Parameters:
T - The type of the input to the function.
R - The type of the result of the function.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @ClassVersion(sourceVersion="$Id: TCEFunction.java 993 2022-01-19 22:26:20Z tquadrat $") @API(status=STABLE, since="0.0.5") public interface TCEFunction<T,R>
The TCE version of the interface Function that represents a function that accepts one argument and produces a result.

Different from the method Function.apply() the method apply(Object) of this interface declares to throw a checked exception.

This is a functional interface whose functional method is apply(Object).
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: TCEFunction.java 993 2022-01-19 22:26:20Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.function.tce.TCEFunction"

UML Diagram for "org.tquadrat.foundation.function.tce.TCEFunction"

UML Diagram for "org.tquadrat.foundation.function.tce.TCEFunction"
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T arg)
    Applies this function to the given argument.
  • Method Details

    • apply

      R apply(T arg) throws Exception
      Applies this function to the given argument.
      Parameters:
      arg - The function argument.
      Returns:
      The function result.
      Throws:
      Exception - Something went wrong.