All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.qbicc.tests.snippets.MethodHandle Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.tests.snippets;

import java.util.function.IntFunction;

public class MethodHandle {
    public static void main(String[] args) {
        for (int i = 0; i < 5; i ++) {
            System.out.print(apply(Integer::toString, i));
            System.out.print('.');
        }
    }

    private static String apply(IntFunction fn, int value) {
        return fn.apply(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy