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

com.github.tommyettinger.function.ShortCharToCharBiFunction Maven / Gradle / Ivy

The newest version!
package com.github.tommyettinger.function;

/**
 * Represents an operation on a {@code short}-valued operand and a {@code char}-valued
 * operand that produces a {@code char}-valued result.
 * 
* This is a functional interface whose functional method is {@link #applyAsChar(short, char)}. */ @FunctionalInterface public interface ShortCharToCharBiFunction { /** * Applies this function to the given arguments. * * @param first the first function argument * @param second the second function argument * @return the function result */ char applyAsChar(short first, char second); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy