prepend
Return a new list where b is prepended to a
prepend(a, b): out1
Arguments:
Arguments
Name | Type | Default | Description |
---|---|---|---|
a | list | The input number or list that will come after any prepend values in the output list. | |
b | list | A number or list of numbers to prepend to the input. |
Returns
Name | Type | Description |
---|---|---|
out1 | list | Outputs a list composed of the prepended value(s) followed by the input value(s). |