MCPcopy Index your code
hub / github.com/douchuan/algorithm / iter

Method iter

src/common/stack.rs:27–29  ·  view source on GitHub ↗

Returns an iterator to this stack that iterates through the items in LIFO order.

(&self)

Source from the content-addressed store, hash-verified

25
26 /// Returns an iterator to this stack that iterates through the items in LIFO order.
27 pub fn iter(&self) -> Iter<'_, T> {
28 self.ll.iter()
29 }
30
31 pub fn len(&self) -> usize {
32 self.ll.len()

Callers 15

weighted_qufFunction · 0.45
qufFunction · 0.45
ufFunction · 0.45
small_merge_v1Function · 0.45
large_merge_v1Function · 0.45
eq_data_merge_v1Function · 0.45
small_merge_v2Function · 0.45
large_merge_v2Function · 0.45

Calls

no outgoing calls

Tested by 15

scaleFunction · 0.36
plusFunction · 0.36
subFunction · 0.36
dfs_pathsFunction · 0.36
bfs_pathsFunction · 0.36
trie_stFunction · 0.36
tstFunction · 0.36
dfs_pathsFunction · 0.36
bfs_pathsFunction · 0.36
fib_classic_recursiveFunction · 0.36
fib_cache_resultFunction · 0.36