With go slices it is possible to append multiple values: ``` s = append(s, anotherSlice...) ``` This is quite cumbersome currently with immutable, and also would create a lot of unnecessary lists. Would it be possible to add support for this?