diff options
author | George Marques <george@gmarqu.es> | 2016-06-12 14:31:48 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2016-06-12 14:53:03 -0300 |
commit | feb95fa9ace04a3f2eb883e39995b962fde09561 (patch) | |
tree | 173f79b22b16c84a34ff69effb7c77a1bfa8b2e6 | |
parent | 68868aabc6f27a8facd8fe3ecb5719bc50f0f3f4 (diff) |
Add documentation to String.is_subsequence_of{,i}
-rw-r--r-- | doc/base/classes.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index b72f082afa..21fd878816 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -37028,6 +37028,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> |