(&self, i: usize)
| 982 | |
| 983 | impl<A: smallvec::Array> SmallIntMap<A> { |
| 984 | fn get(&self, i: usize) -> Option<&A::Item> { |
| 985 | self.0.get(i) |
| 986 | } |
| 987 | |
| 988 | fn get_mut_or_default(&mut self, i: usize) -> &mut A::Item |
| 989 | where |
no outgoing calls
no test coverage detected