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

Assign() public method

public Assign ( LNode lhs, LNode rhs, int startIndex = -1, int endIndex = -1 ) : LNode
lhs LNode
rhs LNode
startIndex int
endIndex int
return LNode
		public LNode Assign(LNode lhs, LNode rhs, int startIndex = -1, int endIndex = -1)
		{
			if (endIndex < startIndex) endIndex = startIndex;
			return Call(S.Assign, new VList<LNode>(lhs, rhs), startIndex, endIndex);
		}

Same methods

LNodeFactory::Assign ( Symbol lhs, LNode rhs, int startIndex = -1, int endIndex = -1 ) : LNode