summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-06-13 13:25:56 -0300
committerGitHub <noreply@github.com>2016-06-13 13:25:56 -0300
commit20b45678293551f9fdb5a4b13ec1d5871a3d9cf8 (patch)
tree24bf08bb47ef788c7b103eadf73f5d10ecb46c52 /doc
parent7127f0943df4790f49afa8fda084ea6dff705e7e (diff)
parentfeb95fa9ace04a3f2eb883e39995b962fde09561 (diff)
Merge pull request #5177 from vnen/string-subsequence
Add subsequence search to tools
Diffstat (limited to 'doc')
-rw-r--r--doc/base/classes.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 8a75ba5c87..0d8f7eecdd 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -37271,6 +37271,24 @@ This method controls whether the position between two cached points is interpola
If the string is a path to a file or directory, return true if the path is relative.
</description>
</method>
+ <method name="is_subsequence_of">
+ <return type="bool">
+ </return>
+ <argument index="0" name="text" type="String">
+ </argument>
+ <description>
+ Checked whether this string is a subsequence of the given string.
+ </description>
+ </method>
+ <method name="is_subsequence_ofi">
+ <return type="bool">
+ </return>
+ <argument index="0" name="text" type="String">
+ </argument>
+ <description>
+ Checked whether this string is a subsequence of the given string, without considering case.
+ </description>
+ </method>
<method name="is_valid_float">
<return type="bool">
</return>