equal
deleted
inserted
replaced
23 * questions. |
23 * questions. |
24 */ |
24 */ |
25 package java.util.function; |
25 package java.util.function; |
26 |
26 |
27 /** |
27 /** |
28 * A supplier of {@code double} values. |
28 * A supplier of {@code double} values. This is the {@code double}-providing |
|
29 * primitive specialization of {@link Supplier}. |
29 * |
30 * |
30 * <p/>This is the primitive type specialization of {@link Supplier} for |
31 * @see Supplier |
31 * {@code double} and also may be used as a {@code Supplier<Double>}. |
|
32 * |
|
33 * @since 1.8 |
32 * @since 1.8 |
34 */ |
33 */ |
35 @FunctionalInterface |
34 @FunctionalInterface |
36 public interface DoubleSupplier { |
35 public interface DoubleSupplier { |
37 |
36 |