1 write to Rune
Microsoft.CodeAnalysis.CodeStyle (1)
VirtualChar.cs (1)
78
Rune
= rune;
16 references to Rune
Microsoft.CodeAnalysis.CodeStyle (16)
IVirtualCharService.cs (1)
50
/// VirtualChar in the result array with a matching <see cref="VirtualChar.
Rune
"/> property.
VirtualChar.cs (15)
30
/// The value of this <see cref="VirtualChar"/> as a <see cref="
Rune
"/> if such a representation is possible.
31
/// <see cref="
Rune
"/>s can represent Unicode codepoints that can appear in a <see cref="string"/> except for
40
/// cref="
Rune
"/>. If <see cref="
Rune
"/> is not <see cref="Rune.ReplacementChar"/>, this will be <c>0</c>.
59
/// if <paramref name="surrogateChar"/> is not actually a surrogate character. The resultant <see cref="
Rune
"/>
86
/// cref="
Rune
"/>.
88
public int Value => SurrogateChar != 0 ? SurrogateChar :
Rune
.Value;
91
=> SurrogateChar != 0 ? char.IsDigit(SurrogateChar) : Rune.IsDigit(
Rune
);
94
=> SurrogateChar != 0 ? char.IsLetterOrDigit(SurrogateChar) : Rune.IsLetterOrDigit(
Rune
);
97
=> SurrogateChar != 0 ? char.IsWhiteSpace(SurrogateChar) : Rune.IsWhiteSpace(
Rune
);
117
=>
Rune
== other.
Rune
&&
124
hashCode = hashCode * -1521134295 +
Rune
.GetHashCode();
136
=> SurrogateChar != 0 ? SurrogateChar.ToString() :
Rune
.ToString();
148
var length =
Rune
.EncodeToUtf16(chars);