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

io.deephaven.engine.primitive.function.ByteToIntFunction Maven / Gradle / Ivy

Go to download

Primitives: Expanding upon java.util.PrimitiveIterator and java.util.function.* for {byte, char, float, short}

There is a newer version: 0.36.1
Show newest version
/*
 * ---------------------------------------------------------------------------------------------------------------------
 * AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY - for any changes edit CharToIntFunction and regenerate
 * ---------------------------------------------------------------------------------------------------------------------
 */
package io.deephaven.engine.primitive.function;

/**
 * Functional interface to apply a function to a single {@code byte} input and produce a single {@code int} result.
 */
@FunctionalInterface
public interface ByteToIntFunction {

    /**
     * Apply this function to {@code value}.
     *
     * @param value The {@code byte} input
     * @return The {@code int} result
     */
    int applyAsInt(byte value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy