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

Method iter

datafusion/functions-nested/src/array_has.rs:278–284  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

276 }
277
278 fn iter(&self) -> Box<dyn Iterator<Item = Option<ArrayRef>> + 'a> {
279 match self {
280 ArrayWrapper::FixedSizeList(arr) => Box::new(arr.iter()),
281 ArrayWrapper::List(arr) => Box::new(arr.iter()),
282 ArrayWrapper::LargeList(arr) => Box::new(arr.iter()),
283 }
284 }
285
286 fn values(&self) -> &ArrayRef {
287 match self {

Callers 15

criterion_benchmarkFunction · 0.45
bench_arrays_zipFunction · 0.45
bench_array_to_stringFunction · 0.45
bench_caseFunction · 0.45
bench_array_repeat_int64Function · 0.45
bench_array_positionFunction · 0.45
bench_array_positionsFunction · 0.45

Calls 1

newFunction · 0.85