com.github.leeonky.interpreter.MapAble Maven / Gradle / Ivy
The newest version!
package com.github.leeonky.interpreter;
import java.util.function.UnaryOperator;
public interface MapAble, T> {
SELF map(UnaryOperator mapper);
}