We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa2b710 commit 5765b34Copy full SHA for 5765b34
lucene/core/src/java/org/apache/lucene/util/FloatComparator.java
@@ -22,6 +22,7 @@
22
@FunctionalInterface
23
public interface FloatComparator {
24
25
+ /** Represents a function that returns a {@code float} result */
26
27
interface ToFloatFunction<T> {
28
float applyAsFloat(T obj);
lucene/core/src/java/org/apache/lucene/util/PriorityQueue.java
@@ -37,6 +37,7 @@
37
*/
38
public abstract class PriorityQueue<T> implements Iterable<T> {
39
40
+ /** Represents a {@code <} operation, which is less prescriptive than {@link Comparator} */
41
42
public interface LessThan<T> {
43
boolean lessThan(T a, T b);
0 commit comments