|
| static bool | operator== (Rune left, Rune right) |
| |
| static bool | operator!= (Rune left, Rune right) |
| |
| static bool | operator< (Rune left, Rune right) |
| |
| static bool | operator<= (Rune left, Rune right) |
| |
| static bool | operator> (Rune left, Rune right) |
| |
| static bool | operator>= (Rune left, Rune right) |
| |
| static | operator Rune (char ch) |
| |
| static | operator Rune (uint value) |
| |
| static | operator Rune (int value) |
| |
| static OperationStatus | DecodeFromUtf16 (ReadOnlySpan< char > source, out Rune result, out int charsConsumed) |
| |
| static OperationStatus | DecodeFromUtf8 (ReadOnlySpan< byte > source, out Rune result, out int bytesConsumed) |
| |
| static OperationStatus | DecodeLastFromUtf16 (ReadOnlySpan< char > source, out Rune result, out int charsConsumed) |
| |
| static OperationStatus | DecodeLastFromUtf8 (ReadOnlySpan< byte > source, out Rune value, out int bytesConsumed) |
| |
| static Rune | GetRuneAt (string input, int index) |
| |
| static bool | IsValid (int value) |
| |
| static bool | IsValid (uint value) |
| |
| static bool | TryCreate (char ch, out Rune result) |
| |
| static bool | TryCreate (char highSurrogate, char lowSurrogate, out Rune result) |
| |
| static bool | TryCreate (int value, out Rune result) |
| |
| static bool | TryCreate (uint value, out Rune result) |
| |
| static bool | TryGetRuneAt (string input, int index, out Rune value) |
| |
| static double | GetNumericValue (Rune value) |
| |
| static UnicodeCategory | GetUnicodeCategory (Rune value) |
| |
| static bool | IsControl (Rune value) |
| |
| static bool | IsDigit (Rune value) |
| |
| static bool | IsLetter (Rune value) |
| |
| static bool | IsLetterOrDigit (Rune value) |
| |
| static bool | IsLower (Rune value) |
| |
| static bool | IsNumber (Rune value) |
| |
| static bool | IsPunctuation (Rune value) |
| |
| static bool | IsSeparator (Rune value) |
| |
| static bool | IsSymbol (Rune value) |
| |
| static bool | IsUpper (Rune value) |
| |
| static bool | IsWhiteSpace (Rune value) |
| |
| static Rune | ToLower (Rune value, CultureInfo culture) |
| |
| static Rune | ToLowerInvariant (Rune value) |
| |
| static Rune | ToUpper (Rune value, CultureInfo culture) |
| |
| static Rune | ToUpperInvariant (Rune value) |
| |
Definition at line 11 of file Rune.cs.