1 write to Rune
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\VirtualChars\VirtualChar.cs (1)
77
Rune
= rune;
21 references to Rune
Microsoft.CodeAnalysis.CodeStyle (21)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\VirtualChars\IVirtualCharService.cs (1)
50
/// VirtualChar in the result array with a matching <see cref="VirtualChar.
Rune
"/> property.
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EmbeddedLanguages\VirtualChars\VirtualChar.cs (20)
29
/// The value of this <see cref="VirtualChar"/> as a <see cref="
Rune
"/> if such a representation is possible.
30
/// <see cref="
Rune
"/>s can represent Unicode codepoints that can appear in a <see cref="string"/> except for
39
/// cref="
Rune
"/>. If <see cref="
Rune
"/> is not <see cref="Rune.ReplacementChar"/>, this will be <c>0</c>.
58
/// if <paramref name="surrogateChar"/> is not actually a surrogate character. The resultant <see cref="
Rune
"/>
66
return new VirtualChar(rune:
Rune
.ReplacementChar, surrogateChar, span);
71
Contract.ThrowIfFalse(surrogateChar == 0 || rune ==
Rune
.ReplacementChar,
85
/// cref="
Rune
"/>.
87
public int Value => SurrogateChar != 0 ? SurrogateChar :
Rune
.Value;
90
=> SurrogateChar != 0 ? char.IsDigit(SurrogateChar) :
Rune
.IsDigit(
Rune
);
93
=> SurrogateChar != 0 ? char.IsLetter(SurrogateChar) :
Rune
.IsLetter(
Rune
);
96
=> SurrogateChar != 0 ? char.IsLetterOrDigit(SurrogateChar) :
Rune
.IsLetterOrDigit(
Rune
);
99
=> SurrogateChar != 0 ? char.IsWhiteSpace(SurrogateChar) :
Rune
.IsWhiteSpace(
Rune
);
102
public int Utf16SequenceLength => SurrogateChar != 0 ? 1 :
Rune
.Utf16SequenceLength;
118
=> SurrogateChar != 0 ? SurrogateChar.ToString() :
Rune
.ToString();
130
var length =
Rune
.EncodeToUtf16(chars);