Loyc.Syntax.LNodeFactory.List C# (CSharp) Method

List() public method

public List ( VList contents, int startIndex = -1, int endIndex = -1 ) : LNode
contents VList
startIndex int
endIndex int
return LNode
		public LNode List(VList<LNode> contents, int startIndex = -1, int endIndex = -1)
		{
			return Call(S.AltList, contents, startIndex, endIndex);
		}
		public LNode List(IEnumerable<LNode> contents, int startIndex = -1, int endIndex = -1)

Same methods

LNodeFactory::List ( ) : LNode
LNodeFactory::List ( IEnumerable contents, int startIndex = -1, int endIndex = -1 ) : LNode
LNodeFactory::List ( LNode contents, int startIndex = -1, int endIndex = -1 ) : LNode