Merge pull request #81639 from MJacred/is_letter

Add `is_valid_letter()` to `TextServer`
This commit is contained in:
Rémi Verschelde
2024-05-03 01:21:34 +02:00
11 changed files with 799 additions and 0 deletions

View File

@ -1103,6 +1103,13 @@
- May contain Unicode characters of class XID_Continue in the other positions.
</description>
</method>
<method name="is_valid_letter" qualifiers="const">
<return type="bool" />
<param index="0" name="unicode" type="int" />
<description>
Returns [code]true[/code] if the given code point is a valid letter, i.e. it belongs to the Unicode category "L".
</description>
</method>
<method name="load_support_data">
<return type="bool" />
<param index="0" name="filename" type="String" />