What does the " ++ " operator do on sets and lists? For example:
(row(r) ++ column(c))
Thanks in advance.
What does the " ++ " operator do on sets and lists? For example:
(row(r) ++ column(c))
Thanks in advance.
++ combines the contents of two lists. The new list will contain the contents of row(r)
followed by the contents of column(c)
If row(r) has the contents [1, 2] and column(c) has the contents [3, 4], the new list will contain [1, 2, 3, 4]