git-svn-id: svn://ultimatepp.org/upp/trunk@8390 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-04-28 07:22:14 +00:00
parent 07c64259e4
commit 3da72668eb

View file

@ -83,6 +83,6 @@ type with [/ default] deep copy, you can easily create it with
[s7; WithDeepCopy<IntArray> b(a); // b now has deep copy semantics&]
[s7; a`[3`] `= 10; //legal&]
[s7; b `= a; // deep copy&]
[s7; a `= b; // pick&]
[s7; a `= pick(b); // pick&]
[s7; b`[4`] `= 1; // illegal&]
[s0; ]]