mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-15 07:38:14 +00:00
10 lines
650 B
Markdown
10 lines
650 B
Markdown
The `or` and `and` operators take two parameters and return a boolean result.
|
|
|
|
`not` flips a boolean from true to false, or vice versa.
|
|
|
|
`any` will return `true` if there are any `true` values in a array sequence, and `all` will return true if _all_ elements in an array are true.
|
|
|
|
`any_c(condition)` and `all_c(condition)` are like `any` and `all` but they take a condition expression that is used against each element to determine if it's `true`. Note: in `jq` you can simply pass a condition to `any` or `all` and it simply works - `yq` isn't that clever..yet
|
|
|
|
These are most commonly used with the `select` operator to filter particular nodes.
|