Merge pull request #44951 from KoBeWi/documint

Complete the docs for primitive types
This commit is contained in:
Rémi Verschelde 2021-03-31 09:27:13 +02:00 committed by GitHub
commit e49f88b312
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 147 additions and 0 deletions

View file

@ -132,6 +132,7 @@
<argument index="0" name="right" type="bool">
</argument>
<description>
Returns [code]true[/code] if two bools are different, i.e. one is [code]true[/code] and the other is [code]false[/code].
</description>
</method>
<method name="operator &lt;" qualifiers="operator">
@ -140,6 +141,7 @@
<argument index="0" name="right" type="bool">
</argument>
<description>
Returns [code]true[/code] if left operand is [code]false[/code] and right operand is [code]true[/code].
</description>
</method>
<method name="operator ==" qualifiers="operator">
@ -148,6 +150,7 @@
<argument index="0" name="right" type="bool">
</argument>
<description>
Returns [code]true[/code] if two bools are equal, i.e. both are [code]true[/code] or both are [code]false[/code].
</description>
</method>
<method name="operator &gt;" qualifiers="operator">
@ -156,6 +159,7 @@
<argument index="0" name="right" type="bool">
</argument>
<description>
Returns [code]true[/code] if left operand is [code]true[/code] and right operand is [code]false[/code].
</description>
</method>
</methods>