org.openstreetmap.atlas.utilities.function.TernaryOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.utilities.function;
/**
* Represents an operation upon three operands of the same type, producing a result of the same type
* as the operands. This is a specialization of {@link TernaryFunction} for the case where the
* operands and the result are all of the same type.
*
* @param
* the type of the operands and result of the operator
* @author lcram
*/
@FunctionalInterface
public interface TernaryOperator extends TernaryFunction
{
}