@@ -708,7 +708,9 @@ Aliases:
708708<pre class="no-copy"><code class="lang-text no-auto-prettify">Returns a copy of a DataSlice with a additional fallback DataBag(s).
709709
710710Values in the original DataBag of `ds` take precedence over the ones in
711- `*bag`.
711+ `*bag`. The original DataBag (if present) must be immutable. If the original
712+ DataBag is mutable, either freeze `ds` first, or add updates inplace using
713+ mutable API.
712714
713715The DataBag attached to the result is a new immutable DataBag that falls back
714716to the DataBag of `ds` if present and then to `*bag`.
@@ -1188,7 +1190,9 @@ Aliases:
11881190<pre class="no-copy"><code class="lang-text no-auto-prettify">Returns a copy of a DataSlice with DataBag(s) of updates applied.
11891191
11901192Values in `*bag` take precedence over the ones in the original DataBag of
1191- `ds`.
1193+ `ds`. The original DataBag (if present) must be immutable. If the original
1194+ DataBag is mutable, either freeze `ds` first, or add updates inplace using
1195+ mutable API.
11921196
11931197The DataBag attached to the result is a new immutable DataBag that falls back
11941198to the DataBag of `ds` if present and then to `*bag`.
@@ -12832,7 +12836,9 @@ Args:
1283212836<pre class="no-copy"><code class="lang-text no-auto-prettify">Returns a copy of a DataSlice with a additional fallback DataBag(s).
1283312837
1283412838Values in the original DataBag of `ds` take precedence over the ones in
12835- `*bag`.
12839+ `*bag`. The original DataBag (if present) must be immutable. If the original
12840+ DataBag is mutable, either freeze `ds` first, or add updates inplace using
12841+ mutable API.
1283612842
1283712843The DataBag attached to the result is a new immutable DataBag that falls back
1283812844to the DataBag of `ds` if present and then to `*bag`.
@@ -13646,7 +13652,9 @@ Args:
1364613652<pre class="no-copy"><code class="lang-text no-auto-prettify">Returns a copy of a DataSlice with DataBag(s) of updates applied.
1364713653
1364813654Values in `*bag` take precedence over the ones in the original DataBag of
13649- `ds`.
13655+ `ds`. The original DataBag (if present) must be immutable. If the original
13656+ DataBag is mutable, either freeze `ds` first, or add updates inplace using
13657+ mutable API.
1365013658
1365113659The DataBag attached to the result is a new immutable DataBag that falls back
1365213660to the DataBag of `ds` if present and then to `*bag`.
0 commit comments