From c5d7115038de5f83cb83e08748615a84fc26bee2 Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Sat, 6 Aug 2022 21:11:48 +0300 Subject: Rename the argument tag to param in XML documentation --- doc/classes/int.xml | 80 ++++++++++++++++++++++++++--------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) (limited to 'doc/classes/int.xml') diff --git a/doc/classes/int.xml b/doc/classes/int.xml index 6b492ca923..98c200c114 100644 --- a/doc/classes/int.xml +++ b/doc/classes/int.xml @@ -47,21 +47,21 @@ - + Constructs an [int] as a copy of the given [int]. - + Cast a [bool] value to an integer value, [code]int(true)[/code] will be equals to 1 and [code]int(false)[/code] will be equals to 0. - + Cast a float value to an integer value, this method simply removes the number fractions (i.e. rounds [code]from[/code] towards zero), so for example [code]int(2.7)[/code] will be equals to 2, [code]int(0.1)[/code] will be equals to 0 and [code]int(-2.7)[/code] will be equals to -2. This operation is also called truncation. @@ -70,21 +70,21 @@ - + Returns [code]true[/code] if operands are different from each other. - + Returns [code]true[/code] if operands are different from each other. - + Returns the remainder after dividing two integers. This operation uses truncated division, which is often not desired as it does not work well with negative numbers. Consider using [method @GlobalScope.posmod] instead if you want to handle negative numbers. [codeblock] @@ -96,7 +96,7 @@ - + Returns the result of bitwise [code]AND[/code] operation for two integers. [codeblock] @@ -114,21 +114,21 @@ - + Multiplies each component of the [Color] by the given [int]. - + Multiplies each component of the [Quaternion] by the given [int]. This operation is not meaningful on its own, but it can be used as a part of a larger expression. - + Multiplies each component of the [Vector2] by the given [int]. [codeblock] @@ -138,101 +138,101 @@ - + Multiplies each component of the [Vector2i] by the given [int]. - + Multiplies each component of the [Vector3] by the given [int]. - + Multiplies each component of the [Vector3i] by the given [int]. - + - + - + Multiplies an [int] and a [float]. The result is a [float]. - + Multiplies two [int]s. - + - + - + Adds Unicode character with code [int] to the [String]. - + Adds an [int] and a [float]. The result is a [float]. - + Adds two integers. - + Subtracts a [float] from an [int]. The result is a [float]. - + Subtracts two integers. - + Divides an [int] by a [float]. The result is a [float]. [codeblock] @@ -242,7 +242,7 @@ - + Divides two integers. The decimal part of the result is discarded (truncated). [codeblock] @@ -253,21 +253,21 @@ - + Returns [code]true[/code] if this [int] is less than the given [float]. - + Returns [code]true[/code] the left integer is less than the right one. - + Performs bitwise shift left operation on the integer. Effectively the same as multiplying by a power of 2. [codeblock] @@ -278,63 +278,63 @@ - + Returns [code]true[/code] if this [int] is less than or equal to the given [float]. - + Returns [code]true[/code] the left integer is less than or equal to the right one. - + Returns [code]true[/code] if the integer is equal to the given [float]. - + Returns [code]true[/code] if both integers are equal. - + Returns [code]true[/code] if this [int] is greater than the given [float]. - + Returns [code]true[/code] the left integer is greater than the right one. - + Returns [code]true[/code] if this [int] is greater than or equal to the given [float]. - + Returns [code]true[/code] the left integer is greater than or equal to the right one. - + Performs bitwise shift right operation on the integer. Effectively the same as dividing by a power of 2. [codeblock] @@ -345,7 +345,7 @@ - + Returns the result of bitwise [code]XOR[/code] operation for two integers. [codeblock] @@ -368,7 +368,7 @@ - + Returns the result of bitwise [code]OR[/code] operation for two integers. [codeblock] -- cgit v1.2.3