1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Trait impls:
// Maybe:
// Index<&Q>
// Index<(Bound<usize>, Bound<usize>)>
// Index<Range<usize>>
// Index<RangeFrom<usize>>
// Index<RangeFull>
// Index<RangeInclusive<usize>>
// Index<RangeTo<usize>>
// Index<RangeToInclusive<usize>>
// IndexMut<&Q>
// IndexMut<(Bound<usize>, Bound<usize>)>
// IndexMut<Range<usize>>
// IndexMut<RangeFrom<usize>>
// IndexMut<RangeFull>
// IndexMut<RangeInclusive<usize>>
// IndexMut<RangeTo<usize>>
// IndexMut<RangeToInclusive<usize>>
// Nah:
// Arbitrary
// Arbitrary<'a>
// BorshDeserialize
// BorshSerialize
// FromParallelIterator<(K, V)>
// IntoParallelIterator
// MutableKeys
// ParallelDrainRange
// ParallelExtend<(&'a K, &'a V)>
// ParallelExtend<(K, V)>
// RawEntryApiV1<K, V, S>
//
// Methods:
// Maybe:
// as_slice()
// as_mut_slice()
// into_boxed_slice()
// binary_search_by()
// binary_search_by_key()
// binary_search_keys()
// get_range()
// get_range_mut()
// insert_sorted()
// shift_insert()
// retain()
// Nah:
// entry()
// first_entry()
// last_entry()
// get_index_entry()
// get_full(&self, key: &str) -> Option<(usize, &str, &T)>;
// get_full_mut(&mut self, key: &str) -> Option<(usize, &str, &mut T)>;
// partition_point()
// sort_unstable_by()
// sort_unstable_keys()
// sorted_unstable_by()
// sort_by_cached_key()
// shift_remove_entry()
// shift_remove_full()
// swap_remove_entry()
// swap_remove_full()
// try_reserve()
// try_reserve_exact()
// rayon:
// par_keys()
// par_values()
// par_eq()
// par_values_mut()
// par_*
//
//pub mod slice;
pub use Lookup;
pub use LookupVec;
pub use Lookup;