Interface ToCharFunction<A>

  • Type Parameters:
    A - The type of the input-parameter.
    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 ToCharFunction<A>
    Function-Pointer Input: A Output: char.

    A FunctionalInterface (Function-Pointer) that is a function for generating / producing a Java char-primitive. This Function accepts 1 argument.


    • Method Summary

       
      @FunctionalInterface (Lambda) Method
      Modifier and Type Method
      char applyAsChar​(A a)
    • Method Detail

      • applyAsChar

         
        char applyAsChar​(A a)
        Applies 'this' integer-function to the given argument, and returns the resulting 'char'
        Parameters:
        a - the input argument
        Returns:
        The 'char' result.