Class MemoryExtensions
Contains extensions methods for memory types.
Inherited Members
Namespace: SixLabors.Fonts.Unicode
Assembly: SixLabors.Fonts.dll
Syntax
public static class MemoryExtensions
Methods
| Improve this Doc View SourceEnumerateCodePoints(ReadOnlySpan<Char>)
Returns an enumeration of Code
Declaration
public static SpanCodePointEnumerator EnumerateCodePoints(this ReadOnlySpan<char> span)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Char> | span | The readonly span of char elements representing the text to enumerate. |
Returns
Type | Description |
---|---|
SpanCodePointEnum |
Remarks
Invalid sequences will be represented in the enumeration by Replacement
EnumerateCodePoints(Span<Char>)
Returns an enumeration of Code
Declaration
public static SpanCodePointEnumerator EnumerateCodePoints(this Span<char> span)
Parameters
Returns
Type | Description |
---|---|
SpanCodePointEnum |
Remarks
Invalid sequences will be represented in the enumeration by Replacement
EnumerateGraphemes(ReadOnlySpan<Char>)
Returns an enumeration of Grapheme instances from the provided span.
Declaration
public static SpanGraphemeEnumerator EnumerateGraphemes(this ReadOnlySpan<char> span)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Char> | span | The readonly span of char elements representing the text to enumerate. |
Returns
Type | Description |
---|---|
SpanGraphemeEnum |
Remarks
Invalid sequences will be represented in the enumeration by Any.
EnumerateGraphemes(Span<Char>)
Returns an enumeration of Grapheme instances from the provided span.
Declaration
public static SpanGraphemeEnumerator EnumerateGraphemes(this Span<char> span)
Parameters
Returns
Type | Description |
---|---|
SpanGraphemeEnum |
Remarks
Invalid sequences will be represented in the enumeration by Any.
GetCodePointCount(ReadOnlySpan<Char>)
Returns the number of code points in the provided span.
Declaration
public static int GetCodePointCount(this ReadOnlySpan<char> span)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Char> | span | The readonly span of char elements representing the text to enumerate. |
Returns
| Improve this Doc View SourceGetCodePointCount(Span<Char>)
Returns the number of code points in the provided span.
Declaration
public static int GetCodePointCount(this Span<char> span)
Parameters
Returns
| Improve this Doc View SourceGetCodePointCount(String)
Returns the number of code points in the provided text.
Declaration
public static int GetCodePointCount(this string text)
Parameters
Type | Name | Description |
---|---|---|
String | text | The text to enumerate. |
Returns
| Improve this Doc View SourceGetGraphemeCount(ReadOnlySpan<Char>)
Returns the number of graphemes in the provided span.
Declaration
public static int GetGraphemeCount(this ReadOnlySpan<char> span)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<Char> | span | The readonly span of char elements representing the text to enumerate. |
Returns
| Improve this Doc View SourceGetGraphemeCount(Span<Char>)
Returns the number of graphemes in the provided span.
Declaration
public static int GetGraphemeCount(this Span<char> span)
Parameters
Returns
| Improve this Doc View SourceGetGraphemeCount(String)
Returns the number of graphemes in the provided text.
Declaration
public static int GetGraphemeCount(this string text)
Parameters
Type | Name | Description |
---|---|---|
String | text | The text to enumerate. |