1 write to _value
Microsoft.CodeAnalysis (1)
Collections\Rope.cs (1)
89
public StringRope(string value) =>
_value
= value;
5 references to _value
Microsoft.CodeAnalysis (5)
Collections\Rope.cs (5)
90
public override string ToString() =>
_value
;
104
wrote = Math.Min(maxLength,
_value
.Length);
105
return
_value
[..wrote];
108
public override int Length =>
_value
.Length;
109
protected override IEnumerable<char> GetChars() =>
_value
;