Deep-clone the underlying list in the same pool. The returned list will have identical contents but changes to this list will not change its contents or vice-versa.
(&self, pool: &mut ValueListPool)
| 160 | /// list will have identical contents but changes to this list |
| 161 | /// will not change its contents or vice-versa. |
| 162 | pub fn deep_clone(&self, pool: &mut ValueListPool) -> Self { |
| 163 | Self { |
| 164 | values: self.values.deep_clone(pool), |
| 165 | } |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | /// Wrapper for the context needed to display a [BlockCall] value. |
no outgoing calls
no test coverage detected