mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
7 lines
264 B
Markdown
7 lines
264 B
Markdown
Add behaves differently according to the type of the LHS:
|
|
- arrays: concatenate
|
|
- number scalars: arithmetic addition
|
|
- string scalars: concatenate
|
|
|
|
Use `+=` as append assign for things like increment. Note that `.a += .x` is equivalent to running `.a = .a + .x`.
|