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