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