mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 15:19:07 +00:00
langref: update docs for ** and ++
This behavior changed with https://github.com/ziglang/zig/issues/7147
This commit is contained in:
parent
f8666d748d
commit
aea29afc44
1 changed files with 2 additions and 2 deletions
|
|
@ -2286,7 +2286,7 @@ value == null{#endsyntax#}</pre>
|
||||||
<td>
|
<td>
|
||||||
Array concatenation.
|
Array concatenation.
|
||||||
<ul>
|
<ul>
|
||||||
<li>Only available when {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
|
<li>Only available when the lengths of both {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
@ -2307,7 +2307,7 @@ mem.eql(u32, &together, &[_]u32{1,2,3,4}){#endsyntax#}</pre>
|
||||||
<td>
|
<td>
|
||||||
Array multiplication.
|
Array multiplication.
|
||||||
<ul>
|
<ul>
|
||||||
<li>Only available when {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
|
<li>Only available when the length of {#syntax#}a{#endsyntax#} and {#syntax#}b{#endsyntax#} are {#link|compile-time known|comptime#}.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue