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