internal static ConstantValue CreateFromRope(Rope value) { LorettaDebug.Assert(value != null); return(new ConstantValueString(value)); }
public ConcatRope(Rope left, Rope right) { _left = left; _right = right; Length = checked (left.Length + right.Length); }
/// <summary> /// A rope can be formed from the concatenation of two ropes. /// </summary> public static Rope Concat(Rope r1 !!, Rope r2 !!)