Bracket notation with wildcard after array slice

Setup

Selector: $[0:2][*]

[[1, 2], ["a", "b"], [0, 0]]

Results

Consensus

[
  1,
  2,
  "a",
  "b"
]

Other responses

Clojure (json-path) ¹

[
  1,
  2
]

Elixir (ExJsonPath)

Not supported

syntax error before: '*'

Elixir (jaxon)

[]

Golang (github.com-bhmj-jsonslice) ¹ ³

[
  [
    1,
    2
  ],
  [
    "a",
    "b"
  ]
]

Golang (github.com-oliveagle-jsonpath) ¹

[
  [
    1,
    2
  ],
  [
    "a",
    "b"
  ],
  [
    0,
    0
  ]
]

Raku (JSON-Path)

[
  1,
  2,
  "a",
  "b",
  0,
  0
]

Rust (jsonpath)

Not supported

parsing error

Footnotes