Package org.nd4j.common.function
Interface Predicate<T>
-
public interface Predicate<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
test(T t)
Returns the result of the predicate on the given input
-
-
-
Method Detail
-
test
boolean test(T t)
Returns the result of the predicate on the given input- Parameters:
t
- Input- Returns:
- Result
-
-