Java.util.function.BiFunction

From NovaOrdis Knowledge Base
Revision as of 01:11, 29 March 2018 by Ovidiu (talk | contribs) (→‎Overview)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

External

Internal

Overview

Represents a function that accepts two arguments and produces a result. This is the two-arity specialization of Function.

@FunctionalInterface
public interface BiFunction<T, U, R> {

    R apply(T t, U u)

}