append
Add data to the end of an array
append
data to the end of an array.
<stdin> -> append: value -> <stdout>
» a: [Monday..Sunday] -> append: Funday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
Funday
It's worth noting that prepend
and append
are not data type aware. So any integers in data type aware structures will be converted into strings:
» tout: json [1,2,3] -> append: new
[
"1",
"2",
"3",
"new"
]
@[
(range): Outputs a ranged subset of data from STDIN[[
(element): Outputs an element from a nested structure[
(index): Outputs an element from an array, map or table[
(index): Outputs an element from an array, map or tablea
(mkarray): A sophisticated yet simple way to build an array or listaddheading
: Adds headings to a tablecast
: Alters the data type of the previous function without altering it's outputcount
: Count items in a map, list or arrayja
(mkarray): A sophisticated yet simply way to build a JSON arraymatch
: Match an exact value in an arraymsort
: Sorts an array - data type agnosticmtac
: Reverse the order of an arrayprepend
: Add data to the start of an arrayregexp
: Regexp tools for arrays / lists of stringsThis site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Thu May 26 22:49:43 UTC 2022 against commit 59e27bb59e27bb1013043fc4a940cf9a2767c63f31dad2c.
Current version is 2.8.2100 which has been verified against 15889 tests cases.