Axiom.Compiler.CodeObjectModel.PrologCodeTerm.IsVariable C# (CSharp) Method

IsVariable() public static method

public static IsVariable ( PrologCodeTerm term ) : bool
term PrologCodeTerm
return bool
        public static bool IsVariable(PrologCodeTerm term)
        {
            if(term is PrologCodeVariable)
            {
                return true;
            }
            return false;
        }