suffix
Less than 1 minute
suffix
Prefix a string to every item in a list
Description
Takes a list from stdin and returns that same list with each element suffixed.
Usage
<stdin> -> suffix str -> <stdout>
Examples
» ja [Monday..Wednesday] -> suffix foobar
[
"Mondayfoobar",
"Tuesdayfoobar",
"Wednesdayfoobar"
]
Detail
Supported data types can queried via runtime
runtime --marshallers
runtime --unmarshallers
Synonyms
suffix
list.suffix
See Also
a
(mkarray): A sophisticated yet simple way to build an array or listcount
: Count items in a map, list or arrayja
(mkarray): A sophisticated yet simply way to build a JSON arraylang.MarshalData()
(system API): Converts structured memory into a Murex data-type (eg for stdio)lang.UnmarshalData()
(system API): Converts a Murex data-type into structured memoryleft
: Left substring every item in a listprefix
: Prefix a string to every item in a listright
: Right substring every item in a listruntime
: Returns runtime information on the internal state of Murex
This document was generated from builtins/core/lists/push_pop_doc.yaml.