MCPcopy Create free account
hub / github.com/apache/datafusion / extend

Method extend

datafusion/functions-aggregate/src/hyperloglog.rs:221–225  ·  view source on GitHub ↗
(&mut self, iter: S)

Source from the content-addressed store, hash-verified

219 T: Hash,
220{
221 fn extend<S: IntoIterator<Item = T>>(&mut self, iter: S) {
222 for elem in iter {
223 self.add(&elem);
224 }
225 }
226}
227
228impl<'a, T> Extend<&'a T> for HyperLogLog<T>

Callers 15

general_replaceFunction · 0.45
arrays_zip_innerFunction · 0.45
compact_listFunction · 0.45
general_removeFunction · 0.45
general_repeatFunction · 0.45
general_list_repeatFunction · 0.45
array_sort_non_primitiveFunction · 0.45
concat_internalFunction · 0.45
general_array_elementFunction · 0.45
general_array_sliceFunction · 0.45

Calls 1

addMethod · 0.45

Tested by 2

test_stringFunction · 0.36
test_merge_overlappedFunction · 0.36