All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.annimon.stream.function.IntUnaryOperator Maven / Gradle / Ivy

package com.annimon.stream.function;

/**
 * Represents an operation on a single int-valued operand that produces an int-valued result.
 * This is the primitive type specialization of UnaryOperator for int.
 */
@FunctionalInterface
public interface IntUnaryOperator {

    /**
     * Applies this operator to the given operand.
     *
     * @param operand the operand
     * @return the operator result
     */
    int applyAsInt(int operand);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy