@FunctionalInterface public interface CharToBooleanFunction
char
value argument and produces a
boolean
result. This is the char
-consuming primitive type specialization of
Function
.
This is a functional interface whose functional method is applyAsChar(char)
.
Function
Modifier and Type | Method and Description |
---|---|
boolean |
applyAsChar(char value)
Applies this function to the given
char value. |
Copyright © 2023. All rights reserved.