1 write to _value
Microsoft.CodeAnalysis (1)
Collections\Rope.cs (1)
147
public StringRope(string value) =>
_value
= value;
5 references to _value
Microsoft.CodeAnalysis (5)
Collections\Rope.cs (5)
148
public override string ToString() =>
_value
;
162
wrote = Math.Min(maxLength,
_value
.Length);
163
return
_value
[..wrote];
166
public override int Length =>
_value
.Length;
167
public override Enumerator GetEnumerator() => new Enumerator(
_value
);