github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/builtins/core/arraytools/addheading_doc.yaml (about) 1 - DocumentID: addheading 2 Title: >- 3 `addheading` 4 CategoryID: commands 5 Summary: >- 6 Adds headings to a table 7 Description: |- 8 `addheading` takes a list of parameters and adds them to the start of a table. 9 Where `prepend` is designed to work with arrays, `addheading` is designed to 10 prepend to tables. 11 Usage: |- 12 ``` 13 <stdin> -> addheading value value value ... -> <stdout> 14 ``` 15 Examples: |- 16 ``` 17 ยป tout jsonl '["Bob", 23, true]' -> addheading name age active 18 ["name","age","active"] 19 ["Bob","23","true"] 20 ``` 21 Detail: 22 Synonyms: 23 Related: 24 - item-index 25 - element 26 - cast 27 - append 28 - prepend 29 - a 30 - ja 31 - count 32 - mtac 33 - msort 34 - match 35 - regexp