yq/pkg/yqlib/doc/headers/Add.md
2021-01-11 15:43:50 +11:00

264 B

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.