LongToIntFunction Interface in Java with Examples Last Updated : 08 Oct, 2018 Comments Improve Suggest changes Like Article Like Report The LongToIntFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in a long-valued argument and gives an int-valued result. The lambda expression assigned to an object of DoubleToLongFunction type is used to define its applyAsInt() which eventually applies the given operation on its only argument. It is similar to using an object of type Function<Long, Integer>. The LongToIntFunction interface has only one function: applyAsInt() This method accepts a long-valued argument and gives an int-valued result. Syntax: int applyAsInt(long value) Parameters: This method takes in one parameter value which is the long-valued argument. Returns: This method returns an int-valued result. Below is the code to illustrate applyAsInt() method: Program Java // Java Program to demonstrate // LongToIntFunction's applyAsInt() method import java.util.function.LongToIntFunction; public class Main { public static void main(String args[]) { // Instantiating LongToIntFunction LongToIntFunction ob = a -> (int)a * 100000; // Applying the above function // using applyAsInt() System.out.println(ob.applyAsInt(2)); } } Output: 200000 Comment More infoAdvertise with us Next Article LongToIntFunction Interface in Java with Examples P psil123 Follow Improve Article Tags : Misc Java Java - util package java-basics java-interfaces Java 8 +2 More Practice Tags : JavaMisc Similar Reads ToIntFunction Interface in Java with Examples The ToIntFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in an argument of type T and produces an int-valued result. This functional interface takes in only one ge 1 min read LongFunction Interface in Java with Examples The LongFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in a long-valued argument and produces a result of type R. This functional interface takes in only one gene 1 min read ToIntBiFunction Interface in Java with Examples The ToIntBiFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in two arguments of type T and U and produces an int-valued result. This functional interface takes in t 2 min read ToLongFunction Interface in Java with Examples The ToLongFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in an argument of type T and produces a long-valued result. This functional interface takes in only one g 1 min read ToLongBiFunction Interface in Java with Examples The ToLongBiFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in two arguments of type T and U and produces an long-valued result. This functional interface takes in 2 min read LongToDoubleFunction Interface in Java with Examples The LongToDoubleFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in a long-valued argument and gives a double-valued result. The lambda expression assigned to an ob 1 min read ToDoubleBiFunction Interface in Java with Examples The ToDoubleBiFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in two arguments of type T and U and produces a double-valued result. This functional interface takes 2 min read ToDoubleFunction Interface in Java with Examples The ToDoubleFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in an argument of type T and produces a double-valued result. This functional interface takes in only o 1 min read LongConsumer Interface in Java with Examples The LongConsumer Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in one long-valued argument but does not return any value. The lambda expression assigned to an object of L 3 min read IntFunction Interface in Java with Examples The IntFunction Interface is a part of the java.util.function package which has been introduced since Java 8, to implement functional programming in Java. It represents a function which takes in an int-valued argument and produces a result of type R. This functional interface takes in only one gener 1 min read Like