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

com.github.basking2.sdsai.itrex.functions.SetFunction Maven / Gradle / Ivy

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

import com.github.basking2.sdsai.itrex.EvaluationContext;

import java.util.Iterator;

/**
 * Set a value in the {@link EvaluationContext}.
 */
public class SetFunction extends AbstractFunction2 {
    @Override
    protected Object applyImpl(Object o, Object o2, Iterator rest, EvaluationContext context) {
        context.set(o, o2);
        return o2;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy