Interface ThrowingToLongFunction<I,T extends Throwable>

Type Parameters:
I - the type of the input of the function
T - the type of the exception the accept method may throw
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

Represents a function that produces a long-valued result and may thrown an exception.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    apply(I in)
    Applies this function to the given argument, potentially throwing an exception.
  • Method Details

    • apply

      long apply(I in) throws T
      Applies this function to the given argument, potentially throwing an exception.
      Parameters:
      in - the function argument
      Returns:
      the function result
      Throws:
      T - the exception that may be thrown