srctree

Piotr Szlachciak parent f3353708 6a3f9a0b
Add missing != null operator

inlinesplit
doc/langref.html.in added: 17, removed: 2, total 15
@@ -2199,7 +2199,7 @@ unwrapped == 1234{#endsyntax#}</pre>
</td>
<td>
<pre>{#syntax#}const value: ?u32 = null;
value == null{#endsyntax#}</pre>
(value == null) == true{#endsyntax#}</pre>
</td>
</tr>
<tr>
@@ -2220,6 +2220,21 @@ value == null{#endsyntax#}</pre>
<pre>{#syntax#}(1 != 1) == false{#endsyntax#}</pre>
</td>
</tr>
<tr>
<th scope="row"><pre>{#syntax#}a != null{#endsyntax#}</pre></th>
<td>
<ul>
<li>{#link|Optionals#}</li>
</ul>
</td>
<td>
Returns {#syntax#}false{#endsyntax#} if a is {#syntax#}null{#endsyntax#}, otherwise returns {#syntax#}true{#endsyntax#}.
</td>
<td>
<pre>{#syntax#}const value: ?u32 = null;
(value != null) == false{#endsyntax#}</pre>
</td>
</tr>
<tr>
<th scope="row"><pre>{#syntax#}a > b{#endsyntax#}</pre></th>
<td>