Searched defs:function (Results 1 - 25 of 78) sorted by relevance

1234

/libcore/ojluni/src/main/java/java/util/function/
H A Dpackage-info.java47 * they do not identify a complete set of function shapes to which lambda
62 * to those abstract concepts, for example using "this function" instead of
63 * "the function represented by this object". When an API method is said to
65 * provided function to...", this is understood to mean a <i>non-null</i>
73 * <li>There are several basic function shapes, including
74 * {@link java.util.function.Function} (unary function from {@code T} to {@code R}),
75 * {@link java.util.function.Consumer} (unary function from {@code T} to {@code void}),
76 * {@link java.util.function
[all...]
H A DBooleanSupplier.java25 package java.util.function;
H A DDoubleSupplier.java25 package java.util.function;
H A DIntSupplier.java25 package java.util.function;
H A DLongSupplier.java25 package java.util.function;
H A DSupplier.java25 package java.util.function;
H A DUnaryOperator.java25 package java.util.function;
H A DBinaryOperator.java25 package java.util.function;
H A DDoubleBinaryOperator.java25 package java.util.function;
H A DDoubleFunction.java25 package java.util.function;
28 * Represents a function that accepts a double-valued argument and produces a
35 * @param <R> the type of the result of the function
44 * Applies this function to the given argument.
46 * @param value the function argument
47 * @return the function result
H A DDoubleToIntFunction.java25 package java.util.function;
28 * Represents a function that accepts a double-valued argument and produces an
42 * Applies this function to the given argument.
44 * @param value the function argument
45 * @return the function result
H A DDoubleToLongFunction.java25 package java.util.function;
28 * Represents a function that accepts a double-valued argument and produces a
42 * Applies this function to the given argument.
44 * @param value the function argument
45 * @return the function result
H A DIntBinaryOperator.java25 package java.util.function;
H A DIntFunction.java25 package java.util.function;
28 * Represents a function that accepts an int-valued argument and produces a
35 * @param <R> the type of the result of the function
44 * Applies this function to the given argument.
46 * @param value the function argument
47 * @return the function result
H A DIntToDoubleFunction.java25 package java.util.function;
28 * Represents a function that accepts an int-valued argument and produces a
42 * Applies this function to the given argument.
44 * @param value the function argument
45 * @return the function result
H A DIntToLongFunction.java25 package java.util.function;
28 * Represents a function that accepts an int-valued argument and produces a
42 * Applies this function to the given argument.
44 * @param value the function argument
45 * @return the function result
H A DLongBinaryOperator.java25 package java.util.function;
H A DLongFunction.java25 package java.util.function;
28 * Represents a function that accepts a long-valued argument and produces a
35 * @param <R> the type of the result of the function
44 * Applies this function to the given argument.
46 * @param value the function argument
47 * @return the function result
H A DLongToDoubleFunction.java25 package java.util.function;
28 * Represents a function that accepts a long-valued argument and produces a
42 * Applies this function to the given argument.
44 * @param value the function argument
45 * @return the function result
/libcore/luni/src/test/java/libcore/java/util/function/
H A DBiConsumerTest.java17 package libcore.java.util.function;
21 import java.util.function.BiConsumer;
H A DConsumerTest.java17 package libcore.java.util.function;
21 import java.util.function.Consumer;
H A DDoubleConsumerTest.java17 package libcore.java.util.function;
21 import java.util.function.DoubleConsumer;
H A DIntConsumerTest.java17 package libcore.java.util.function;
21 import java.util.function.IntConsumer;
H A DLongConsumerTest.java17 package libcore.java.util.function;
21 import java.util.function.LongConsumer;
H A DUnaryOperatorTest.java17 package libcore.java.util.function;
21 import java.util.function.UnaryOperator;

Completed in 153 milliseconds

1234