1use super::{
2 Bucket, Entries, IndexMap, IntoIter, IntoKeys, IntoValues, Iter, IterMut, Keys, Values,
3 ValuesMut,
4};
5use crate::util::{slice_eq, try_simplify_range};
6
7use alloc::boxed::Box;
8use alloc::vec::Vec;
9use core::cmp::Ordering;
10use core::fmt;
11use core::hash::{Hash, Hasher};
12use core::ops::{self, Bound, Index, IndexMut, RangeBounds};
13
14#[repr(transparent)]
22pub struct Slice<K, V> {
23 pub(crate) entries: [Bucket<K, V>],
24}
25
26#[allow(unsafe_code)]
29impl<K, V> Slice<K, V> {
30 pub(super) const fn from_slice(entries: &[Bucket<K, V>]) -> &Self {
31 unsafe { &*(entries as *const [Bucket<K, V>] as *const Self) }
32 }
33
34 pub(super) fn from_mut_slice(entries: &mut [Bucket<K, V>]) -> &mut Self {
35 unsafe { &mut *(entries as *mut [Bucket<K, V>] as *mut Self) }
36 }
37
38 pub(super) fn from_boxed(entries: Box<[Bucket<K, V>]>) -> Box<Self> {
39 unsafe { Box::from_raw(Box::into_raw(entries) as *mut Self) }
40 }
41
42 fn into_boxed(self: Box<Self>) -> Box<[Bucket<K, V>]> {
43 unsafe { Box::from_raw(Box::into_raw(self) as *mut [Bucket<K, V>]) }
44 }
45}
46
47impl<K, V> Slice<K, V> {
48 pub(crate) fn into_entries(self: Box<Self>) -> Vec<Bucket<K, V>> {
49 self.into_boxed().into_vec()
50 }
51
52 pub const fn new<'a>() -> &'a Self {
54 Self::from_slice(&[])
55 }
56
57 pub fn new_mut<'a>() -> &'a mut Self {
59 Self::from_mut_slice(&mut [])
60 }
61
62 #[inline]
64 pub const fn len(&self) -> usize {
65 self.entries.len()
66 }
67
68 #[inline]
70 pub const fn is_empty(&self) -> bool {
71 self.entries.is_empty()
72 }
73
74 pub fn get_index(&self, index: usize) -> Option<(&K, &V)> {
78 self.entries.get(index).map(Bucket::refs)
79 }
80
81 pub fn get_index_mut(&mut self, index: usize) -> Option<(&K, &mut V)> {
85 self.entries.get_mut(index).map(Bucket::ref_mut)
86 }
87
88 pub fn get_range<R: RangeBounds<usize>>(&self, range: R) -> Option<&Self> {
92 let range = try_simplify_range(range, self.entries.len())?;
93 self.entries.get(range).map(Slice::from_slice)
94 }
95
96 pub fn get_range_mut<R: RangeBounds<usize>>(&mut self, range: R) -> Option<&mut Self> {
100 let range = try_simplify_range(range, self.entries.len())?;
101 self.entries.get_mut(range).map(Slice::from_mut_slice)
102 }
103
104 pub fn first(&self) -> Option<(&K, &V)> {
106 self.entries.first().map(Bucket::refs)
107 }
108
109 pub fn first_mut(&mut self) -> Option<(&K, &mut V)> {
111 self.entries.first_mut().map(Bucket::ref_mut)
112 }
113
114 pub fn last(&self) -> Option<(&K, &V)> {
116 self.entries.last().map(Bucket::refs)
117 }
118
119 pub fn last_mut(&mut self) -> Option<(&K, &mut V)> {
121 self.entries.last_mut().map(Bucket::ref_mut)
122 }
123
124 pub fn split_at(&self, index: usize) -> (&Self, &Self) {
128 let (first, second) = self.entries.split_at(index);
129 (Self::from_slice(first), Self::from_slice(second))
130 }
131
132 pub fn split_at_mut(&mut self, index: usize) -> (&mut Self, &mut Self) {
136 let (first, second) = self.entries.split_at_mut(index);
137 (Self::from_mut_slice(first), Self::from_mut_slice(second))
138 }
139
140 pub fn split_first(&self) -> Option<((&K, &V), &Self)> {
143 if let [first, rest @ ..] = &self.entries {
144 Some((first.refs(), Self::from_slice(rest)))
145 } else {
146 None
147 }
148 }
149
150 pub fn split_first_mut(&mut self) -> Option<((&K, &mut V), &mut Self)> {
153 if let [first, rest @ ..] = &mut self.entries {
154 Some((first.ref_mut(), Self::from_mut_slice(rest)))
155 } else {
156 None
157 }
158 }
159
160 pub fn split_last(&self) -> Option<((&K, &V), &Self)> {
163 if let [rest @ .., last] = &self.entries {
164 Some((last.refs(), Self::from_slice(rest)))
165 } else {
166 None
167 }
168 }
169
170 pub fn split_last_mut(&mut self) -> Option<((&K, &mut V), &mut Self)> {
173 if let [rest @ .., last] = &mut self.entries {
174 Some((last.ref_mut(), Self::from_mut_slice(rest)))
175 } else {
176 None
177 }
178 }
179
180 pub fn iter(&self) -> Iter<'_, K, V> {
182 Iter::new(&self.entries)
183 }
184
185 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
187 IterMut::new(&mut self.entries)
188 }
189
190 pub fn keys(&self) -> Keys<'_, K, V> {
192 Keys::new(&self.entries)
193 }
194
195 pub fn into_keys(self: Box<Self>) -> IntoKeys<K, V> {
197 IntoKeys::new(self.into_entries())
198 }
199
200 pub fn values(&self) -> Values<'_, K, V> {
202 Values::new(&self.entries)
203 }
204
205 pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
207 ValuesMut::new(&mut self.entries)
208 }
209
210 pub fn into_values(self: Box<Self>) -> IntoValues<K, V> {
212 IntoValues::new(self.into_entries())
213 }
214
215 pub fn binary_search_keys(&self, x: &K) -> Result<usize, usize>
224 where
225 K: Ord,
226 {
227 self.binary_search_by(|p, _| p.cmp(x))
228 }
229
230 #[inline]
237 pub fn binary_search_by<'a, F>(&'a self, mut f: F) -> Result<usize, usize>
238 where
239 F: FnMut(&'a K, &'a V) -> Ordering,
240 {
241 self.entries.binary_search_by(move |a| f(&a.key, &a.value))
242 }
243
244 #[inline]
251 pub fn binary_search_by_key<'a, B, F>(&'a self, b: &B, mut f: F) -> Result<usize, usize>
252 where
253 F: FnMut(&'a K, &'a V) -> B,
254 B: Ord,
255 {
256 self.binary_search_by(|k, v| f(k, v).cmp(b))
257 }
258
259 #[must_use]
266 pub fn partition_point<P>(&self, mut pred: P) -> usize
267 where
268 P: FnMut(&K, &V) -> bool,
269 {
270 self.entries
271 .partition_point(move |a| pred(&a.key, &a.value))
272 }
273}
274
275impl<'a, K, V> IntoIterator for &'a Slice<K, V> {
276 type IntoIter = Iter<'a, K, V>;
277 type Item = (&'a K, &'a V);
278
279 fn into_iter(self) -> Self::IntoIter {
280 self.iter()
281 }
282}
283
284impl<'a, K, V> IntoIterator for &'a mut Slice<K, V> {
285 type IntoIter = IterMut<'a, K, V>;
286 type Item = (&'a K, &'a mut V);
287
288 fn into_iter(self) -> Self::IntoIter {
289 self.iter_mut()
290 }
291}
292
293impl<K, V> IntoIterator for Box<Slice<K, V>> {
294 type IntoIter = IntoIter<K, V>;
295 type Item = (K, V);
296
297 fn into_iter(self) -> Self::IntoIter {
298 IntoIter::new(self.into_entries())
299 }
300}
301
302impl<K, V> Default for &'_ Slice<K, V> {
303 fn default() -> Self {
304 Slice::from_slice(&[])
305 }
306}
307
308impl<K, V> Default for &'_ mut Slice<K, V> {
309 fn default() -> Self {
310 Slice::from_mut_slice(&mut [])
311 }
312}
313
314impl<K, V> Default for Box<Slice<K, V>> {
315 fn default() -> Self {
316 Slice::from_boxed(Box::default())
317 }
318}
319
320impl<K: Clone, V: Clone> Clone for Box<Slice<K, V>> {
321 fn clone(&self) -> Self {
322 Slice::from_boxed(self.entries.to_vec().into_boxed_slice())
323 }
324}
325
326impl<K: Copy, V: Copy> From<&Slice<K, V>> for Box<Slice<K, V>> {
327 fn from(slice: &Slice<K, V>) -> Self {
328 Slice::from_boxed(Box::from(&slice.entries))
329 }
330}
331
332impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Slice<K, V> {
333 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
334 f.debug_list().entries(self).finish()
335 }
336}
337
338impl<K, V, K2, V2> PartialEq<Slice<K2, V2>> for Slice<K, V>
339where
340 K: PartialEq<K2>,
341 V: PartialEq<V2>,
342{
343 fn eq(&self, other: &Slice<K2, V2>) -> bool {
344 slice_eq(&self.entries, &other.entries, |b1, b2| {
345 b1.key == b2.key && b1.value == b2.value
346 })
347 }
348}
349
350impl<K, V, K2, V2> PartialEq<[(K2, V2)]> for Slice<K, V>
351where
352 K: PartialEq<K2>,
353 V: PartialEq<V2>,
354{
355 fn eq(&self, other: &[(K2, V2)]) -> bool {
356 slice_eq(&self.entries, other, |b, t| b.key == t.0 && b.value == t.1)
357 }
358}
359
360impl<K, V, K2, V2> PartialEq<Slice<K2, V2>> for [(K, V)]
361where
362 K: PartialEq<K2>,
363 V: PartialEq<V2>,
364{
365 fn eq(&self, other: &Slice<K2, V2>) -> bool {
366 slice_eq(self, &other.entries, |t, b| t.0 == b.key && t.1 == b.value)
367 }
368}
369
370impl<K, V, K2, V2, const N: usize> PartialEq<[(K2, V2); N]> for Slice<K, V>
371where
372 K: PartialEq<K2>,
373 V: PartialEq<V2>,
374{
375 fn eq(&self, other: &[(K2, V2); N]) -> bool {
376 <Self as PartialEq<[_]>>::eq(self, other)
377 }
378}
379
380impl<K, V, const N: usize, K2, V2> PartialEq<Slice<K2, V2>> for [(K, V); N]
381where
382 K: PartialEq<K2>,
383 V: PartialEq<V2>,
384{
385 fn eq(&self, other: &Slice<K2, V2>) -> bool {
386 <[_] as PartialEq<_>>::eq(self, other)
387 }
388}
389
390impl<K: Eq, V: Eq> Eq for Slice<K, V> {}
391
392impl<K: PartialOrd, V: PartialOrd> PartialOrd for Slice<K, V> {
393 fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
394 self.iter().partial_cmp(other)
395 }
396}
397
398impl<K: Ord, V: Ord> Ord for Slice<K, V> {
399 fn cmp(&self, other: &Self) -> Ordering {
400 self.iter().cmp(other)
401 }
402}
403
404impl<K: Hash, V: Hash> Hash for Slice<K, V> {
405 fn hash<H: Hasher>(&self, state: &mut H) {
406 self.len().hash(state);
407 for (key, value) in self {
408 key.hash(state);
409 value.hash(state);
410 }
411 }
412}
413
414impl<K, V> Index<usize> for Slice<K, V> {
415 type Output = V;
416
417 fn index(&self, index: usize) -> &V {
418 &self.entries[index].value
419 }
420}
421
422impl<K, V> IndexMut<usize> for Slice<K, V> {
423 fn index_mut(&mut self, index: usize) -> &mut V {
424 &mut self.entries[index].value
425 }
426}
427
428macro_rules! impl_index {
432 ($($range:ty),*) => {$(
433 impl<K, V, S> Index<$range> for IndexMap<K, V, S> {
434 type Output = Slice<K, V>;
435
436 fn index(&self, range: $range) -> &Self::Output {
437 Slice::from_slice(&self.as_entries()[range])
438 }
439 }
440
441 impl<K, V, S> IndexMut<$range> for IndexMap<K, V, S> {
442 fn index_mut(&mut self, range: $range) -> &mut Self::Output {
443 Slice::from_mut_slice(&mut self.as_entries_mut()[range])
444 }
445 }
446
447 impl<K, V> Index<$range> for Slice<K, V> {
448 type Output = Slice<K, V>;
449
450 fn index(&self, range: $range) -> &Self {
451 Self::from_slice(&self.entries[range])
452 }
453 }
454
455 impl<K, V> IndexMut<$range> for Slice<K, V> {
456 fn index_mut(&mut self, range: $range) -> &mut Self {
457 Self::from_mut_slice(&mut self.entries[range])
458 }
459 }
460 )*}
461}
462impl_index!(
463 ops::Range<usize>,
464 ops::RangeFrom<usize>,
465 ops::RangeFull,
466 ops::RangeInclusive<usize>,
467 ops::RangeTo<usize>,
468 ops::RangeToInclusive<usize>,
469 (Bound<usize>, Bound<usize>)
470);
471
472#[cfg(test)]
473mod tests {
474 use super::*;
475
476 #[test]
477 fn slice_index() {
478 fn check(
479 vec_slice: &[(i32, i32)],
480 map_slice: &Slice<i32, i32>,
481 sub_slice: &Slice<i32, i32>,
482 ) {
483 assert_eq!(map_slice as *const _, sub_slice as *const _);
484 itertools::assert_equal(
485 vec_slice.iter().copied(),
486 map_slice.iter().map(|(&k, &v)| (k, v)),
487 );
488 itertools::assert_equal(vec_slice.iter().map(|(k, _)| k), map_slice.keys());
489 itertools::assert_equal(vec_slice.iter().map(|(_, v)| v), map_slice.values());
490 }
491
492 let vec: Vec<(i32, i32)> = (0..10).map(|i| (i, i * i)).collect();
493 let map: IndexMap<i32, i32> = vec.iter().cloned().collect();
494 let slice = map.as_slice();
495
496 check(&vec[..], &map[..], &slice[..]);
498
499 for i in 0usize..10 {
500 assert_eq!(vec[i].1, map[i]);
502 assert_eq!(vec[i].1, slice[i]);
503 assert_eq!(map[&(i as i32)], map[i]);
504 assert_eq!(map[&(i as i32)], slice[i]);
505
506 check(&vec[i..], &map[i..], &slice[i..]);
508
509 check(&vec[..i], &map[..i], &slice[..i]);
511
512 check(&vec[..=i], &map[..=i], &slice[..=i]);
514
515 let bounds = (Bound::Excluded(i), Bound::Unbounded);
517 check(&vec[i + 1..], &map[bounds], &slice[bounds]);
518
519 for j in i..=10 {
520 check(&vec[i..j], &map[i..j], &slice[i..j]);
522 }
523
524 for j in i..10 {
525 check(&vec[i..=j], &map[i..=j], &slice[i..=j]);
527 }
528 }
529 }
530
531 #[test]
532 fn slice_index_mut() {
533 fn check_mut(
534 vec_slice: &[(i32, i32)],
535 map_slice: &mut Slice<i32, i32>,
536 sub_slice: &mut Slice<i32, i32>,
537 ) {
538 assert_eq!(map_slice, sub_slice);
539 itertools::assert_equal(
540 vec_slice.iter().copied(),
541 map_slice.iter_mut().map(|(&k, &mut v)| (k, v)),
542 );
543 itertools::assert_equal(
544 vec_slice.iter().map(|&(_, v)| v),
545 map_slice.values_mut().map(|&mut v| v),
546 );
547 }
548
549 let vec: Vec<(i32, i32)> = (0..10).map(|i| (i, i * i)).collect();
550 let mut map: IndexMap<i32, i32> = vec.iter().cloned().collect();
551 let mut map2 = map.clone();
552 let slice = map2.as_mut_slice();
553
554 check_mut(&vec[..], &mut map[..], &mut slice[..]);
556
557 for i in 0usize..10 {
558 assert_eq!(&mut map[i], &mut slice[i]);
560
561 check_mut(&vec[i..], &mut map[i..], &mut slice[i..]);
563
564 check_mut(&vec[..i], &mut map[..i], &mut slice[..i]);
566
567 check_mut(&vec[..=i], &mut map[..=i], &mut slice[..=i]);
569
570 let bounds = (Bound::Excluded(i), Bound::Unbounded);
572 check_mut(&vec[i + 1..], &mut map[bounds], &mut slice[bounds]);
573
574 for j in i..=10 {
575 check_mut(&vec[i..j], &mut map[i..j], &mut slice[i..j]);
577 }
578
579 for j in i..10 {
580 check_mut(&vec[i..=j], &mut map[i..=j], &mut slice[i..=j]);
582 }
583 }
584 }
585}