You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A static object, T, when converted to a builder, B, the builder should be given a copy of T.foo, so that inserting or deleting items from B.foo doesn't affect T.foo.
The canonical problem example is:
A data class has an array of integers, foo.
A static object, T, when converted to a builder, B, the builder should be given a copy of T.foo, so that inserting or deleting items from B.foo doesn't affect T.foo.