Skip to content

Commit

Permalink
deploy: 86dc4a4
Browse files Browse the repository at this point in the history
  • Loading branch information
elkowar committed Nov 20, 2024
1 parent b356caf commit ba00c24
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion expression_language.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,12 @@ <h2 id="features"><a class="header" href="#features">Features</a></h2>
<li>simple mathematical operations (<code>+</code>, <code>-</code>, <code>*</code>, <code>/</code>, <code>%</code>)</li>
<li>comparisons (<code>==</code>, <code>!=</code>, <code>&gt;</code>, <code>&lt;</code>, <code>&lt;=</code>, <code>&gt;=</code>)</li>
<li>boolean operations (<code>||</code>, <code>&amp;&amp;</code>, <code>!</code>)</li>
<li>regex match operator (<code>=~</code>)</li>
<li>regex match operator (<code>=~</code>)
<ul>
<li>Rust regex style, left hand is regex, right hand is string</li>
<li>ex: workspace.name =~ '^special:.+$'</li>
</ul>
</li>
<li>elvis operator (<code>?:</code>)
<ul>
<li>if the left side is <code>&quot;&quot;</code> or a JSON <code>null</code>, then returns the right side,
Expand Down
7 changes: 6 additions & 1 deletion print.html
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,12 @@ <h2 id="features"><a class="header" href="#features">Features</a></h2>
<li>simple mathematical operations (<code>+</code>, <code>-</code>, <code>*</code>, <code>/</code>, <code>%</code>)</li>
<li>comparisons (<code>==</code>, <code>!=</code>, <code>&gt;</code>, <code>&lt;</code>, <code>&lt;=</code>, <code>&gt;=</code>)</li>
<li>boolean operations (<code>||</code>, <code>&amp;&amp;</code>, <code>!</code>)</li>
<li>regex match operator (<code>=~</code>)</li>
<li>regex match operator (<code>=~</code>)
<ul>
<li>Rust regex style, left hand is regex, right hand is string</li>
<li>ex: workspace.name =~ '^special:.+$'</li>
</ul>
</li>
<li>elvis operator (<code>?:</code>)
<ul>
<li>if the left side is <code>&quot;&quot;</code> or a JSON <code>null</code>, then returns the right side,
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

0 comments on commit ba00c24

Please sign in to comment.