diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-06-20 13:37:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 13:37:24 +0200 |
commit | 36687684632bac50f1e6b0fc4b0adab6f09bf663 (patch) | |
tree | fcfc9f4a2d64211fd9e775e2812ac3500d0550d2 /doc/base | |
parent | a1a57bc369de01cbb2295b403d84ec5fac210020 (diff) | |
parent | 66e7ddb55b4c7e5f29acb0df83dafc69d091a8cc (diff) |
Merge pull request #5196 from vnen/similarity-code-completion
Improve code completion search
Diffstat (limited to 'doc/base')
-rw-r--r-- | doc/base/classes.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index b773d85b02..e687fb5ccf 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -37268,6 +37268,13 @@ This method controls whether the position between two cached points is interpola Return true if the strings begins with the given string. </description> </method> + <method name="bigrams"> + <return type="StringArray"> + </return> + <description> + Return the bigrams (pairs of consecutive letters) of this string. + </description> + </method> <method name="c_escape"> <return type="String"> </return> @@ -37627,6 +37634,15 @@ This method controls whether the position between two cached points is interpola <description> </description> </method> + <method name="similarity"> + <return type="float"> + </return> + <argument index="0" name="text" type="String"> + </argument> + <description> + Return the similarity index of the text compared to this string. 1 means totally similar and 0 means totally dissimilar. + </description> + </method> <method name="split"> <return type="StringArray"> </return> |