Skip to content

Commit ddc79d8

Browse files
committed
Deploying to gh-pages from @ 1fff7f4 🚀
1 parent e23b342 commit ddc79d8

File tree

4 files changed

+0
-24
lines changed

4 files changed

+0
-24
lines changed

.doctrees/environment.pickle

-2.93 KB
Binary file not shown.

_sources/tutorials/programming-language/main/04-00-advanced-features/04-05-methods-with-syntax-support.rst.txt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,6 @@ Vala recognizes some methods with certain names and signatures and provides synt
2121
| T2 index2, T3 item)`` | index1, index2] = item`` |
2222
+----------------------------------+---------------------------------------+
2323

24-
+--------------------------------------------------------------------------+
25-
| **Indexers** |
26-
+================================+=========================================+
27-
| ``T2 get(T1 index)`` | Index access: ``obj[index]`` |
28-
+--------------------------------+-----------------------------------------+
29-
| ``void set(T1 index, T2 item)``| Index assignment: ``obj[index] = item`` |
30-
+--------------------------------+-----------------------------------------+
31-
3224
+-----------------------------------+--------------------------------------+
3325
| **Others** |
3426
+===================================+======================================+

tutorials/programming-language/main/04-00-advanced-features/04-05-methods-with-syntax-support.html

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -576,22 +576,6 @@ <h1><span class="section-number">4.5. </span>Methods With Syntax Support<a class
576576
<div class="table-wrapper docutils container">
577577
<table class="docutils align-default">
578578
<thead>
579-
<tr class="row-odd"><th class="head" colspan="2"><p><strong>Indexers</strong></p></th>
580-
</tr>
581-
</thead>
582-
<tbody>
583-
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">T2</span> <span class="pre">get(T1</span> <span class="pre">index)</span></code></p></td>
584-
<td><p>Index access: <code class="docutils literal notranslate"><span class="pre">obj[index]</span></code></p></td>
585-
</tr>
586-
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">void</span> <span class="pre">set(T1</span> <span class="pre">index,</span> <span class="pre">T2</span> <span class="pre">item)</span></code></p></td>
587-
<td><p>Index assignment: <code class="docutils literal notranslate"><span class="pre">obj[index]</span> <span class="pre">=</span> <span class="pre">item</span></code></p></td>
588-
</tr>
589-
</tbody>
590-
</table>
591-
</div>
592-
<div class="table-wrapper docutils container">
593-
<table class="docutils align-default">
594-
<thead>
595579
<tr class="row-odd"><th class="head" colspan="2"><p><strong>Others</strong></p></th>
596580
</tr>
597581
</thead>

0 commit comments

Comments
 (0)