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

com.github.leeonky.interpreter.Clause Maven / Gradle / Ivy

The newest version!
package com.github.leeonky.interpreter;

public interface Clause> {
    N expression(N input);

    default int getOperandPosition(N input) {
        return expression(input).getOperandPosition();
    }

    default Clause merge(Clause another) {
        return input -> another.expression(expression(input));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy