Method ToLowerAscii
ToLowerAscii<T>(ref T)
Converts string to lowercase only ASCII characters.
Declaration
public static T ToLowerAscii<T>(this ref T fs) where T : unmanaged, INativeList<byte>, IUTF8Bytes
Parameters
Type | Name | Description |
---|---|---|
T | fs | A string to perform operation. |
Returns
Type | Description |
---|---|
T | Returns a copy of this string converted to lowercase ASCII. |
Type Parameters
Name | Description |
---|---|
T | A string type. |
ToLowerAscii(ref UnsafeText, AllocatorHandle)
Converts string to lowercase only ASCII characters.
Declaration
public static UnsafeText ToLowerAscii(this ref UnsafeText fs, AllocatorManager.AllocatorHandle allocator)
Parameters
Type | Name | Description |
---|---|---|
Unsafe |
fs | A Unsafe |
Allocator |
allocator | The Allocator |
Returns
Type | Description |
---|---|
Unsafe |
Returns a copy of this string converted to lowercase ASCII. |
ToLowerAscii(ref NativeText, AllocatorHandle)
Converts string to lowercase only ASCII characters.
Declaration
public static NativeText ToLowerAscii(this ref NativeText fs, AllocatorManager.AllocatorHandle allocator)
Parameters
Type | Name | Description |
---|---|---|
Native |
fs | A Native |
Allocator |
allocator | The Allocator |
Returns
Type | Description |
---|---|
Native |
Returns a copy of this string converted to lowercase ASCII. |