(target: DataStore)
| 1252 | } |
| 1253 | |
| 1254 | private _copyCommonProps(target: DataStore): void { |
| 1255 | target._count = this._count; |
| 1256 | target._rawCount = this._rawCount; |
| 1257 | target._provider = this._provider; |
| 1258 | target._dimensions = this._dimensions; |
| 1259 | |
| 1260 | target._extent = clone(this._extent); |
| 1261 | target._rawExtent = clone(this._rawExtent); |
| 1262 | } |
| 1263 | |
| 1264 | private _cloneIndices(): DataStore['_indices'] { |
| 1265 | if (this._indices) { |