T
- first parameter typeU
- second parameter typeR
- result typepublic interface BiFunction<T,U,R>
Modifier and Type | Method and Description |
---|---|
R |
apply(T t,
U u)
Returns the result of applying this function to
input . |
boolean |
equals(Object object)
Indicates whether another object is equal to this function.
|
R apply(T t, U u)
input
. This method is generally
expected, but not absolutely required, to have the following properties:
Objects.equals(a, b)
implies that Objects.equals(function.apply(a),
function.apply(b))
.
t
- first parameteru
- second parameterNullPointerException
- if input
is null and this function does not accept null
argumentsboolean equals(Object object)
Most implementations will have no reason to override the behavior of Object.equals(java.lang.Object)
.
However, an implementation may also choose to return true
whenever object
is a
BiFunction
that it considers interchangeable with this one. "Interchangeable"
typically means that Objects.equal(this.apply(f), that.apply(f))
is true for all
f
of type F
. Note that a false
result from this method does not imply
that the functions are known not to be interchangeable.
Copyright © 2007-2018 Whitestein Technologies. All Rights Reserved.