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

List() public method

public List ( LNode contents, int startIndex = -1, int endIndex = -1 ) : LNode
contents LNode
startIndex int
endIndex int
return LNode
		public LNode List(LNode[] contents, int startIndex = -1, int endIndex = -1)
		{
			return Call(S.AltList, contents, startIndex, endIndex);
		}
		public LNode List(VList<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 ( VList contents, int startIndex = -1, int endIndex = -1 ) : LNode