mirror of
https://github.com/mikefarah/yq.git
synced 2025-03-10 19:37:46 +00:00
6 lines
281 B
Markdown
6 lines
281 B
Markdown
# Entries
|
|
|
|
Similar to the same named functions in `jq` these functions convert to/from an object and an array of key-value pairs. This is most useful for performing operations on keys of maps.
|
|
|
|
Use `with_entries(op)` as a syntatic sugar for doing `to_entries | op | from_entries`.
|