![JAR search and dependency download from the Maven repository](/logo.png)
riddley.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-resources-viz Show documentation
Show all versions of rest-resources-viz Show documentation
Transformations and visualizations for Cortex Rest resources
The newest version!
package riddley;
import clojure.lang.Symbol;
import clojure.lang.Compiler;
public class Util {
public static Compiler.LocalBinding localBinding(int num, Symbol sym, Symbol tag, Object form) {
return new Compiler.LocalBinding(num, sym, tag, Compiler.analyze(Compiler.C.EXPRESSION, form), false, null);
}
public static Compiler.LocalBinding localArgument(int num, Symbol sym, Symbol tag) {
return new Compiler.LocalBinding(num, sym, tag, null, true, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy