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

org.matheclipse.core.reflection.system.AtomQ Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package org.matheclipse.core.reflection.system;

import org.matheclipse.core.eval.exception.Validate;
import org.matheclipse.core.eval.interfaces.AbstractFunctionEvaluator;
import org.matheclipse.core.expression.F;
import org.matheclipse.core.interfaces.IAST;
import org.matheclipse.core.interfaces.IExpr;
import org.matheclipse.core.interfaces.ISymbol;

import com.google.common.base.Predicate;

/**
 * Returns True, if the given expression is an atomic object
 * (i.e. no AST instance)
 * 
 */
public class AtomQ extends AbstractFunctionEvaluator implements
		Predicate {
	/**
	 * Constructor for the unary predicate
	 */
	public final static AtomQ CONST = new AtomQ();
	
	public AtomQ() {
//		System.out.println(getClass().getCanonicalName());
	}

	/**
	 * Returns True if the 1st argument is an atomic object;
	 * False otherwise
	 */
	@Override
	public IExpr evaluate(final IAST ast) {
		Validate.checkSize(ast, 2);
		return F.bool(ast.get(1).isAtom());
	}

	@Override
	public void setUp(final ISymbol symbol) {
		symbol.setAttributes(ISymbol.LISTABLE);
	}

	public boolean apply(final IExpr obj) {
		return obj.isAtom();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy