Style: Sync other changes from new fix_style.sh and clang_format.sh

This commit is contained in:
Rémi Verschelde
2020-07-24 10:39:18 +02:00
parent eda03831d6
commit b40f3f9740
74 changed files with 116 additions and 86 deletions
+4 -4
View File
@@ -203,10 +203,10 @@
<description>
Returns [code]true[/code] if the array contains the given value.
[codeblock]
["inside", 7].has("inside") == true
["inside", 7].has("outside") == false
["inside", 7].has(7) == true
["inside", 7].has("7") == false
["inside", 7].has("inside") # True
["inside", 7].has("outside") # False
["inside", 7].has(7) # True
["inside", 7].has("7") # False
[/codeblock]
[b]Note:[/b] This is equivalent to using the [code]in[/code] operator as follows:
[codeblock]