Skip to content

Commit

Permalink
Update Language-Definition.md
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Jan 22, 2023
1 parent 5a2e18d commit 30d6ead
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion docs/Language-Definition.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Language Definition

<table>
<tr><th colspan="2">Built-in Functions</th></tr>
<tr>
<th colspan="2">Built-in Functions</th>
<th colspan="2">Operators</th>
</tr>
<tr>
<td>
<a href="#allarray-predicate">all()</a><br>
Expand All @@ -15,6 +18,18 @@
<a href="#filterarray-predicate">filter()</a><br>
<a href="#countarray-predicate">count()</a><br>
</td>
<td>
<a href="#string-operators">matches</a><br>
<a href="#string-operators">contains</a><br>
<a href="#string-operators">startsWith</a><br>
<a href="#string-operators">endsWith</a><br>
</td>
<td>
<a href="#membership-operators">in</a><br>
<a href="#membership-operators">not in</a><br>
<a href="#range-operator">x..y</a><br>
<a href="#slice-operator">[x:y]</a><br>
</td>
</tr>
</table>

Expand Down

0 comments on commit 30d6ead

Please sign in to comment.