Home
last modified time | relevance | path

Searched refs:next_tuple (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/itertools/tests/
Dtuples.rs65 fn next_tuple() { in next_tuple() function
68 assert_eq!(iter.next_tuple().map(|(&x, &y)| (x, y)), Some((1, 2))); in next_tuple()
69 assert_eq!(iter.next_tuple().map(|(&x, &y)| (x, y)), Some((3, 4))); in next_tuple()
70 assert_eq!(iter.next_tuple::<(_, _)>(), None); in next_tuple()
/external/rust/crates/itertools/src/
Dlib.rs1555 fn next_tuple<T>(&mut self) -> Option<T> in next_tuple() method
1584 match self.next_tuple() { in collect_tuple()
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dmap_test.py584 next_tuple = self.getNext(dataset_tuple)
589 tuple_, namedtuple_ = self.evaluate([next_tuple(), next_namedtuple()])
/external/rust/crates/itertools/
DCHANGELOG.md161 - Add `.next_tuple::<T>()` method, that picks the next two, three or four elements in one go.