MCPcopy Create free account
hub / github.com/apache/arrow-rs / clone

Method clone

arrow-array/src/array/dictionary_array.rs:260–267  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

258
259impl<K: ArrowDictionaryKeyType> Clone for DictionaryArray<K> {
260 fn clone(&self) -> Self {
261 Self {
262 data_type: self.data_type.clone(),
263 keys: self.keys.clone(),
264 values: self.values.clone(),
265 is_ordered: self.is_ordered,
266 }
267 }
268}
269
270impl<K: ArrowDictionaryKeyType> DictionaryArray<K> {

Callers 9

try_newMethod · 0.45
new_uncheckedMethod · 0.45
value_typeMethod · 0.45
sliceMethod · 0.45
with_valuesMethod · 0.45
to_dataMethod · 0.45
test_dictionary_arrayFunction · 0.45

Calls

no outgoing calls

Tested by 2

test_dictionary_arrayFunction · 0.36