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