This commit is contained in:
Gary Gregory 2023-07-10 07:14:20 -04:00
parent 4e2782dde5
commit accde3be23
1 changed files with 3 additions and 4 deletions

View File

@ -20,12 +20,11 @@ package org.apache.commons.lang3.function;
import java.util.function.Function; import java.util.function.Function;
/** /**
* Represents a function that accepts an int-valued argument and produces a long-valued result. This is the * Represents a function that accepts an int-valued argument and produces a char-valued result. This is the {@code int}-to-{@code char} primitive specialization
* {@code int}-to-{@code long} primitive specialization for {@link Function}. * for {@link Function}.
* *
* <p> * <p>
* This is a <a href="package-summary.html">functional interface</a> whose functional method is * This is a <a href="package-summary.html">functional interface</a> whose functional method is {@link #applyAsChar(int)}.
* {@link #applyAsChar(int)}.
* </p> * </p>
* *
* @see Function * @see Function