Interface SelectorFunction<T,​U>

  • 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 SelectorFunction<T,​U>
    Much like a standard Function. It exposes the single method using "of" for better legibility in some conditions.
    See Also:
    Function
    • Method Detail

      • of

        U of​(T compound)