aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-31 15:53:23 +0900
committernsfisis <nsfisis@gmail.com>2026-01-31 15:57:48 +0900
commit7712c1d10ec45349c1cd6e66281b7d602350065d (patch)
tree92208e7fb1955fd9847d91affa25ec096012ab9b /docs
parent617ddc62aa4d3153850362526069b85bfaf5e59e (diff)
downloadzgjq-7712c1d10ec45349c1cd6e66281b7d602350065d.tar.gz
zgjq-7712c1d10ec45349c1cd6e66281b7d602350065d.tar.zst
zgjq-7712c1d10ec45349c1cd6e66281b7d602350065d.zip
implement slice expression
Diffstat (limited to 'docs')
-rw-r--r--docs/jq_grammar.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/jq_grammar.md b/docs/jq_grammar.md
index d636756..f9850cf 100644
--- a/docs/jq_grammar.md
+++ b/docs/jq_grammar.md
@@ -89,6 +89,9 @@ term:
suffix:
'[' query ']' '?'?
+ '[' query ':' query ']' '?'?
+ '[' query ':' ']' '?'?
+ '[' ':' query ']' '?'?
primary:
'null'