listConcat (Function)
Signature: listConcat(left: List<t0>, right: List<t0>) -> List<t0>
Description: Returns left ++ right. Same as left + right.
Parameters
- left (List
): Left operand - right (List
): Right operand
Returns: List
Example
listConcat([1, 2], [3, 4]) // [1, 2, 3, 4]
listConcat ([1, 2], [3, 4]) // [1, 2, 3, 4]