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

List() public method

public List ( ) : LNode
return LNode
		public LNode List()
		{
			if (_emptyList == null) 
				_emptyList = Call(S.AltList);
			return _emptyList;
		}
		public LNode List(params LNode[] contents)

Same methods

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