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

Method clone

arrow-array/src/array/list_array.rs:179–186  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

177
178impl<OffsetSize: OffsetSizeTrait> Clone for GenericListArray<OffsetSize> {
179 fn clone(&self) -> Self {
180 Self {
181 data_type: self.data_type.clone(),
182 nulls: self.nulls.clone(),
183 values: self.values.clone(),
184 value_offsets: self.value_offsets.clone(),
185 }
186 }
187}
188
189impl<OffsetSize: OffsetSizeTrait> GenericListArray<OffsetSize> {

Callers 12

value_typeMethod · 0.45
sliceMethod · 0.45
fromMethod · 0.45
to_dataMethod · 0.45
test_list_arrayFunction · 0.45
test_large_list_arrayFunction · 0.45
test_list_array_sliceFunction · 0.45
do_comparisonFunction · 0.45
test_empty_offsetsFunction · 0.45
test_try_newFunction · 0.45
test_nullable_unionFunction · 0.45

Calls

no outgoing calls

Tested by 7

test_list_arrayFunction · 0.36
test_large_list_arrayFunction · 0.36
test_list_array_sliceFunction · 0.36
test_empty_offsetsFunction · 0.36
test_try_newFunction · 0.36
test_nullable_unionFunction · 0.36