com.mitchellbosecke.pebble.extension.core.DefinedTest Maven / Gradle / Ivy
package com.mitchellbosecke.pebble.extension.core;
import java.util.Map;
/**
* Implementation for the test function 'defined'.
*
*
* Inversion of 'null' test function to provide better compatibility with the
* original twig version and JTwig.
*
* @author Thomas Hunziker
*
*/
public class DefinedTest extends NullTest {
public boolean apply(Object input, Map args) {
return !super.apply(input, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy