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

com.github.basking2.sdsai.itrex.functions.bool.NotFunction Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.github.basking2.sdsai.itrex.functions.bool;

/**
 * Return the boolean value of the last argument to this function.
 */
public class NotFunction extends AbstractBooleanFunction {
    public NotFunction() {
        super(false);
    }

    @Override
    public Result booleanOperation(Boolean b1, Boolean b2) {
        return new Result(true, !b2);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy