org.unlaxer.TokenEffecterWithMatcher Maven / Gradle / Ivy
package org.unlaxer;
import java.util.function.Predicate;
import java.util.function.UnaryOperator;
public class TokenEffecterWithMatcher{
public final Predicate target;
public final UnaryOperator effector;
public TokenEffecterWithMatcher(Predicate target, UnaryOperator effector) {
super();
this.target = target;
this.effector = effector;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy