Java Reference

Java Reference

Detailed Description

Represents an operation upon three.

long

-valued operands and producing a

long

-valued result. This is the primitive type specialization of TernaryOperator for

long

.

This is a functional interface whose functional method is applyAsLong(long, long, long).

See also
BinaryOperator
LongUnaryOperator.

Definition at line 27 of file LongTernaryOperator.java.

Public Member Functions

long applyAsLong (long left, long center, long right)
 Applies this operator to the given operands. More...
 

Member Function Documentation

◆ applyAsLong()

long applyAsLong ( long  left,
long  center,
long  right 
)

Applies this operator to the given operands.

Parameters
leftthe first operand
centerthe second operand
rightthe third operand
Returns
the operator result

The documentation for this interface was generated from the following file: