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;
/**
* Represents a function that accepts an int-valued argument and produces a long-valued result. This is the
* {@code int}-to-{@code long} primitive specialization for {@link Function}.
* 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
* for {@link Function}.
*
* <p>
* This is a <a href="package-summary.html">functional interface</a> whose functional method is
* {@link #applyAsChar(int)}.
* This is a <a href="package-summary.html">functional interface</a> whose functional method is {@link #applyAsChar(int)}.
* </p>
*
* @see Function