Interface Function<A,B>


public interface Function<A,B>
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(A arg)
    Transforms an A into a B.
  • Method Details

    • apply

      B apply(A arg)
      Transforms an A into a B.
      Parameters:
      arg - The particular A to be transformed.
      Returns:
      Result of the transformation.