Skip to content

Commit

Permalink
added javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsontom committed Feb 8, 2017
1 parent 20cf8af commit b90b296
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
/*******************************************************************************
* Copyright (c) 2017 BestSolution.at and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tom Schindl<[email protected]> - initial API and implementation
*******************************************************************************/
package org.eclipse.fx.core.function;

import java.util.function.IntUnaryOperator;

/**
* Like {@link IntUnaryOperator} but with 2 arguments
*
* @since 3.0
*/
public interface BiIntUnaryOperator {
/**
* Applies this operator to the given operands.
*
* @param t
* the first operand
* @param u
* the second operand
* @return the operator result
*/
public int applyAsInt(int t, int u);
}

0 comments on commit b90b296

Please sign in to comment.