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

com.squarespace.template.expr.FunctionDef Maven / Gradle / Ivy

package com.squarespace.template.expr;

import java.util.List;

/**
 * Interface implemented by expression functions.
 */
@FunctionalInterface
public interface FunctionDef {

  /**
   * Apply the function to the arguments and return a result. Returns
   * null if the function was unable to apply or otherwise encountered
   * an error.
   */
  Token apply(List args);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy