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

Method iter

publication/code/chapter04/lvec.rs:137–139  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

135 }
136
137 fn iter(&self) -> Iter<T> {
138 Iter { next: self.head.as_deref() }
139 }
140
141 fn iter_mut(&mut self) -> IterMut<T> {
142 IterMut { next: self.head.as_deref_mut() }

Callers 15

bucket_sortFunction · 0.45
radix_sortFunction · 0.45
counting_sortFunction · 0.45
print_lvecMethod · 0.45
iterFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
encode_to_base58Method · 0.45
decode_from_base58Method · 0.45
add_multiMethod · 0.45
remove_multiMethod · 0.45
get_fp_indexMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected