AIMA.Core.Logic.FOL.Parsing.AST.QuantifiedSentence.getArgs C# (CSharp) Method

getArgs() public method

public getArgs ( ) : List
return List
        public List<FOLNode> getArgs()
        {
            return new ReadOnlyCollection<FOLNode>(args).ToList<FOLNode>();
        }