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

List() public method

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

Same methods

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