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

getArgs() public method

public getArgs ( ) : List
return List
        public List<FOLNode> getArgs()
        {
            Sentence[] copy = new Sentence[args.Count];
            args.CopyTo(copy);
            return new List<FOLNode>(copy);
        }