org.psjava.ds.array.FunctionByArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of psjava Show documentation
Show all versions of psjava Show documentation
Problem Solving Library for Java
package org.psjava.ds.array;
import org.psjava.ds.math.Function;
public class FunctionByArray {
public static Function wrap(final Array array) {
return new Function() {
@Override
public T get(Integer input) {
return array.get(input);
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy