[Complex Test Layouts] Change String to use UTF-32 encoding on all platforms.
This commit is contained in:
parent
0864f12f0d
commit
80b8eff6aa
94 changed files with 4889 additions and 1686 deletions
|
|
@ -68,14 +68,28 @@
|
|||
<return type="String">
|
||||
</return>
|
||||
<description>
|
||||
Returns a copy of the array's contents as [String]. Fast alternative to [method get_string_from_utf8] if the content is ASCII-only. Unlike the UTF-8 function this function maps every byte to a character in the array. Multibyte sequences will not be interpreted correctly. For parsing user input always use [method get_string_from_utf8].
|
||||
Converts ASCII/Latin-1 encoded array to [String]. Fast alternative to [method get_string_from_utf8] if the content is ASCII/Latin-1 only. Unlike the UTF-8 function this function maps every byte to a character in the array. Multibyte sequences will not be interpreted correctly. For parsing user input always use [method get_string_from_utf8].
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_string_from_utf16">
|
||||
<return type="String">
|
||||
</return>
|
||||
<description>
|
||||
Converts UTF-16 encoded array to [String]. If the BOM is missing, system endianness is assumed. Returns empty string if source array is not vaild UTF-16 string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_string_from_utf32">
|
||||
<return type="String">
|
||||
</return>
|
||||
<description>
|
||||
Converts UTF-32 encoded array to [String]. System endianness is assumed. Returns empty string if source array is not vaild UTF-32 string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_string_from_utf8">
|
||||
<return type="String">
|
||||
</return>
|
||||
<description>
|
||||
Returns a copy of the array's contents as [String]. Slower than [method get_string_from_ascii] but supports UTF-8 encoded data. Use this function if you are unsure about the source of the data. For user input this function should always be preferred.
|
||||
Converts UTF-8 encoded array to [String]. Slower than [method get_string_from_ascii] but supports UTF-8 encoded data. Use this function if you are unsure about the source of the data. For user input this function should always be preferred. Returns empty string if source array is not vaild UTF-8 string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="has">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue