Make documentation sorting use natural order
This commit is contained in:
@@ -96,6 +96,13 @@
|
||||
Decodes a 16-bit floating point number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0.0[/code] if a valid number can't be decoded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="decode_s8" qualifiers="const">
|
||||
<return type="int" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
<description>
|
||||
Decodes a 8-bit signed integer number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0[/code] if a valid number can't be decoded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="decode_s16" qualifiers="const">
|
||||
<return type="int" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
@@ -117,11 +124,11 @@
|
||||
Decodes a 64-bit signed integer number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0[/code] if a valid number can't be decoded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="decode_s8" qualifiers="const">
|
||||
<method name="decode_u8" qualifiers="const">
|
||||
<return type="int" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
<description>
|
||||
Decodes a 8-bit signed integer number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0[/code] if a valid number can't be decoded.
|
||||
Decodes a 8-bit unsigned integer number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0[/code] if a valid number can't be decoded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="decode_u16" qualifiers="const">
|
||||
@@ -145,13 +152,6 @@
|
||||
Decodes a 64-bit unsigned integer number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0[/code] if a valid number can't be decoded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="decode_u8" qualifiers="const">
|
||||
<return type="int" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
<description>
|
||||
Decodes a 8-bit unsigned integer number from the bytes starting at [param byte_offset]. Fails if the byte count is insufficient. Returns [code]0[/code] if a valid number can't be decoded.
|
||||
</description>
|
||||
</method>
|
||||
<method name="decode_var" qualifiers="const">
|
||||
<return type="Variant" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
@@ -216,6 +216,14 @@
|
||||
Encodes a 16-bit floating point number as bytes at the index of [param byte_offset] bytes. The array must have at least 2 bytes of space, starting at the offset.
|
||||
</description>
|
||||
</method>
|
||||
<method name="encode_s8">
|
||||
<return type="void" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
<param index="1" name="value" type="int" />
|
||||
<description>
|
||||
Encodes a 8-bit signed integer number (signed byte) at the index of [param byte_offset] bytes. The array must have at least 1 byte of space, starting at the offset.
|
||||
</description>
|
||||
</method>
|
||||
<method name="encode_s16">
|
||||
<return type="void" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
@@ -240,12 +248,12 @@
|
||||
Encodes a 64-bit signed integer number as bytes at the index of [param byte_offset] bytes. The array must have at least 8 bytes of space, starting at the offset.
|
||||
</description>
|
||||
</method>
|
||||
<method name="encode_s8">
|
||||
<method name="encode_u8">
|
||||
<return type="void" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
<param index="1" name="value" type="int" />
|
||||
<description>
|
||||
Encodes a 8-bit signed integer number (signed byte) at the index of [param byte_offset] bytes. The array must have at least 1 byte of space, starting at the offset.
|
||||
Encodes a 8-bit unsigned integer number (byte) at the index of [param byte_offset] bytes. The array must have at least 1 byte of space, starting at the offset.
|
||||
</description>
|
||||
</method>
|
||||
<method name="encode_u16">
|
||||
@@ -272,14 +280,6 @@
|
||||
Encodes a 64-bit unsigned integer number as bytes at the index of [param byte_offset] bytes. The array must have at least 8 bytes of space, starting at the offset.
|
||||
</description>
|
||||
</method>
|
||||
<method name="encode_u8">
|
||||
<return type="void" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
<param index="1" name="value" type="int" />
|
||||
<description>
|
||||
Encodes a 8-bit unsigned integer number (byte) at the index of [param byte_offset] bytes. The array must have at least 1 byte of space, starting at the offset.
|
||||
</description>
|
||||
</method>
|
||||
<method name="encode_var">
|
||||
<return type="int" />
|
||||
<param index="0" name="byte_offset" type="int" />
|
||||
@@ -310,6 +310,12 @@
|
||||
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_utf8" qualifiers="const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
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 valid UTF-8 string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_string_from_utf16" qualifiers="const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
@@ -322,12 +328,6 @@
|
||||
Converts UTF-32 encoded array to [String]. System endianness is assumed. Returns empty string if source array is not valid UTF-32 string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_string_from_utf8" qualifiers="const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
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 valid UTF-8 string.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_string_from_wchar" qualifiers="const">
|
||||
<return type="String" />
|
||||
<description>
|
||||
|
||||
Reference in New Issue
Block a user