Skip to content
Snippets Groups Projects
neliöijä.java 226 B
Newer Older
Jeremias Shadbolt's avatar
Jeremias Shadbolt committed
package fi.utu.tech;

import java.util.function.Function;

/**
 * interface to return method "neliöi" to return a squared number
 */
public interface neliöijä {
    Function<Integer, Integer> neliöi = luku -> luku*luku;
}