MCPcopy Create free account
hub / github.com/QMHTMY/RustBook / iter

Method iter

code/chapter03/linked_list.rs:71–73  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

69 }
70
71 pub fn iter(&self) -> Iter<T> {
72 Iter { next: self.head.as_deref() }
73 }
74
75 pub fn iter_mut(&mut self) -> IterMut<T> {
76 IterMut { next: self.head.as_deref_mut() }

Callers 15

bucket_sortFunction · 0.45
radix_sortFunction · 0.45
counting_sortFunction · 0.45
rec_mc2Function · 0.45
rec_mc1Function · 0.45
dp_rec_mcFunction · 0.45
dp_rec_mc_showFunction · 0.45
sum_of_val2Function · 0.45
mainFunction · 0.45
iter_testFunction · 0.45
lenMethod · 0.45
encode_to_base58Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected