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

Method size_hint

arrow-array/src/iterator.rs:99–104  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

97 }
98
99 fn size_hint(&self) -> (usize, Option<usize>) {
100 (
101 self.current_end - self.current,
102 Some(self.current_end - self.current),
103 )
104 }
105
106 #[inline]
107 fn nth(&mut self, n: usize) -> Option<Self::Item> {

Callers 15

trusted_len_unzipFunction · 0.45
from_iterMethod · 0.45
from_iterMethod · 0.45
from_iterMethod · 0.45
from_trusted_len_iterMethod · 0.45
try_from_sparse_iterMethod · 0.45
try_from_iterMethod · 0.45
from_iter_valuesMethod · 0.45
from_iterMethod · 0.45

Calls

no outgoing calls