![JAR search and dependency download from the Maven repository](/logo.png)
com.hubspot.jinjava.el.ext.AdditionOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jinjava Show documentation
Show all versions of jinjava Show documentation
Jinja templating engine implemented in Java
package com.hubspot.jinjava.el.ext;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import de.odysseus.el.misc.NumberOperations;
import de.odysseus.el.misc.TypeConverter;
import de.odysseus.el.tree.impl.ast.AstBinary;
public class AdditionOperator extends AstBinary.SimpleOperator {
@SuppressWarnings("unchecked")
@Override
protected Object apply(TypeConverter converter, Object o1, Object o2) {
if (o1 instanceof Collection) {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy