1use super::{Bucket, IndexSet, IntoIter, Iter};
2use crate::util::{slice_eq, try_simplify_range};
3
4use alloc::boxed::Box;
5use alloc::vec::Vec;
6use core::cmp::Ordering;
7use core::fmt;
8use core::hash::{Hash, Hasher};
9use core::ops::{self, Bound, Index, RangeBounds};
10
11#[repr(transparent)]
19pub struct Slice<T> {
20 pub(crate) entries: [Bucket<T>],
21}
22
23#[allow(unsafe_code)]
26impl<T> Slice<T> {
27 pub(super) const fn from_slice(entries: &[Bucket<T>]) -> &Self {
28 unsafe { &*(entries as *const [Bucket<T>] as *const Self) }
29 }
30
31 pub(super) fn from_boxed(entries: Box<[Bucket<T>]>) -> Box<Self> {
32 unsafe { Box::from_raw(Box::into_raw(entries) as *mut Self) }
33 }
34
35 fn into_boxed(self: Box<Self>) -> Box<[Bucket<T>]> {
36 unsafe { Box::from_raw(Box::into_raw(self) as *mut [Bucket<T>]) }
37 }
38}
39
40impl<T> Slice<T> {
41 pub(crate) fn into_entries(self: Box<Self>) -> Vec<Bucket<T>> {
42 self.into_boxed().into_vec()
43 }
44
45 pub const fn new<'a>() -> &'a Self {
47 Self::from_slice(&[])
48 }
49
50 pub const fn len(&self) -> usize {
52 self.entries.len()
53 }
54
55 pub const fn is_empty(&self) -> bool {
57 self.entries.is_empty()
58 }
59
60 pub fn get_index(&self, index: usize) -> Option<&T> {
64 self.entries.get(index).map(Bucket::key_ref)
65 }
66
67 pub fn get_range<R: RangeBounds<usize>>(&self, range: R) -> Option<&Self> {
71 let range = try_simplify_range(range, self.entries.len())?;
72 self.entries.get(range).map(Self::from_slice)
73 }
74
75 pub const fn first(&self) -> Option<&T> {
77 if let [first, ..] = &self.entries {
78 Some(&first.key)
79 } else {
80 None
81 }
82 }
83
84 pub const fn last(&self) -> Option<&T> {
86 if let [.., last] = &self.entries {
87 Some(&last.key)
88 } else {
89 None
90 }
91 }
92
93 #[track_caller]
98 pub const fn split_at(&self, index: usize) -> (&Self, &Self) {
99 let (first, second) = self.entries.split_at(index);
100 (Self::from_slice(first), Self::from_slice(second))
101 }
102
103 pub const fn split_at_checked(&self, index: usize) -> Option<(&Self, &Self)> {
107 if let Some((first, second)) = self.entries.split_at_checked(index) {
108 Some((Self::from_slice(first), Self::from_slice(second)))
109 } else {
110 None
111 }
112 }
113
114 pub const fn split_first(&self) -> Option<(&T, &Self)> {
117 if let [first, rest @ ..] = &self.entries {
118 Some((&first.key, Self::from_slice(rest)))
119 } else {
120 None
121 }
122 }
123
124 pub const fn split_last(&self) -> Option<(&T, &Self)> {
127 if let [rest @ .., last] = &self.entries {
128 Some((&last.key, Self::from_slice(rest)))
129 } else {
130 None
131 }
132 }
133
134 pub fn iter(&self) -> Iter<'_, T> {
136 Iter::new(&self.entries)
137 }
138
139 pub fn binary_search(&self, x: &T) -> Result<usize, usize>
148 where
149 T: Ord,
150 {
151 self.binary_search_by(|p| p.cmp(x))
152 }
153
154 #[inline]
161 pub fn binary_search_by<'a, F>(&'a self, mut f: F) -> Result<usize, usize>
162 where
163 F: FnMut(&'a T) -> Ordering,
164 {
165 self.entries.binary_search_by(move |a| f(&a.key))
166 }
167
168 #[inline]
175 pub fn binary_search_by_key<'a, B, F>(&'a self, b: &B, mut f: F) -> Result<usize, usize>
176 where
177 F: FnMut(&'a T) -> B,
178 B: Ord,
179 {
180 self.binary_search_by(|k| f(k).cmp(b))
181 }
182
183 #[inline]
185 pub fn is_sorted(&self) -> bool
186 where
187 T: PartialOrd,
188 {
189 self.entries.is_sorted_by(|a, b| a.key <= b.key)
190 }
191
192 #[inline]
194 pub fn is_sorted_by<'a, F>(&'a self, mut cmp: F) -> bool
195 where
196 F: FnMut(&'a T, &'a T) -> bool,
197 {
198 self.entries.is_sorted_by(move |a, b| cmp(&a.key, &b.key))
199 }
200
201 #[inline]
203 pub fn is_sorted_by_key<'a, F, K>(&'a self, mut sort_key: F) -> bool
204 where
205 F: FnMut(&'a T) -> K,
206 K: PartialOrd,
207 {
208 self.entries.is_sorted_by_key(move |a| sort_key(&a.key))
209 }
210
211 #[must_use]
218 pub fn partition_point<P>(&self, mut pred: P) -> usize
219 where
220 P: FnMut(&T) -> bool,
221 {
222 self.entries.partition_point(move |a| pred(&a.key))
223 }
224}
225
226impl<'a, T> IntoIterator for &'a Slice<T> {
227 type IntoIter = Iter<'a, T>;
228 type Item = &'a T;
229
230 fn into_iter(self) -> Self::IntoIter {
231 self.iter()
232 }
233}
234
235impl<T> IntoIterator for Box<Slice<T>> {
236 type IntoIter = IntoIter<T>;
237 type Item = T;
238
239 fn into_iter(self) -> Self::IntoIter {
240 IntoIter::new(self.into_entries())
241 }
242}
243
244impl<T> Default for &'_ Slice<T> {
245 fn default() -> Self {
246 Slice::from_slice(&[])
247 }
248}
249
250impl<T> Default for Box<Slice<T>> {
251 fn default() -> Self {
252 Slice::from_boxed(Box::default())
253 }
254}
255
256impl<T: Clone> Clone for Box<Slice<T>> {
257 fn clone(&self) -> Self {
258 Slice::from_boxed(self.entries.to_vec().into_boxed_slice())
259 }
260}
261
262impl<T: Copy> From<&Slice<T>> for Box<Slice<T>> {
263 fn from(slice: &Slice<T>) -> Self {
264 Slice::from_boxed(Box::from(&slice.entries))
265 }
266}
267
268impl<T: fmt::Debug> fmt::Debug for Slice<T> {
269 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
270 f.debug_list().entries(self).finish()
271 }
272}
273
274impl<T, U> PartialEq<Slice<U>> for Slice<T>
275where
276 T: PartialEq<U>,
277{
278 fn eq(&self, other: &Slice<U>) -> bool {
279 slice_eq(&self.entries, &other.entries, |b1, b2| b1.key == b2.key)
280 }
281}
282
283impl<T, U> PartialEq<[U]> for Slice<T>
284where
285 T: PartialEq<U>,
286{
287 fn eq(&self, other: &[U]) -> bool {
288 slice_eq(&self.entries, other, |b, o| b.key == *o)
289 }
290}
291
292impl<T, U> PartialEq<Slice<U>> for [T]
293where
294 T: PartialEq<U>,
295{
296 fn eq(&self, other: &Slice<U>) -> bool {
297 slice_eq(self, &other.entries, |o, b| *o == b.key)
298 }
299}
300
301impl<T, U, const N: usize> PartialEq<[U; N]> for Slice<T>
302where
303 T: PartialEq<U>,
304{
305 fn eq(&self, other: &[U; N]) -> bool {
306 <Self as PartialEq<[U]>>::eq(self, other)
307 }
308}
309
310impl<T, const N: usize, U> PartialEq<Slice<U>> for [T; N]
311where
312 T: PartialEq<U>,
313{
314 fn eq(&self, other: &Slice<U>) -> bool {
315 <[T] as PartialEq<Slice<U>>>::eq(self, other)
316 }
317}
318
319impl<T: Eq> Eq for Slice<T> {}
320
321impl<T: PartialOrd> PartialOrd for Slice<T> {
322 fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
323 self.iter().partial_cmp(other)
324 }
325}
326
327impl<T: Ord> Ord for Slice<T> {
328 fn cmp(&self, other: &Self) -> Ordering {
329 self.iter().cmp(other)
330 }
331}
332
333impl<T: Hash> Hash for Slice<T> {
334 fn hash<H: Hasher>(&self, state: &mut H) {
335 self.len().hash(state);
336 for value in self {
337 value.hash(state);
338 }
339 }
340}
341
342impl<T> Index<usize> for Slice<T> {
343 type Output = T;
344
345 fn index(&self, index: usize) -> &Self::Output {
346 &self.entries[index].key
347 }
348}
349
350macro_rules! impl_index {
353 ($($range:ty),*) => {$(
354 impl<T, S> Index<$range> for IndexSet<T, S> {
355 type Output = Slice<T>;
356
357 fn index(&self, range: $range) -> &Self::Output {
358 Slice::from_slice(&self.as_entries()[range])
359 }
360 }
361
362 impl<T> Index<$range> for Slice<T> {
363 type Output = Self;
364
365 fn index(&self, range: $range) -> &Self::Output {
366 Slice::from_slice(&self.entries[range])
367 }
368 }
369 )*}
370}
371impl_index!(
372 ops::Range<usize>,
373 ops::RangeFrom<usize>,
374 ops::RangeFull,
375 ops::RangeInclusive<usize>,
376 ops::RangeTo<usize>,
377 ops::RangeToInclusive<usize>,
378 (Bound<usize>, Bound<usize>)
379);
380
381#[cfg(test)]
382mod tests {
383 use super::*;
384
385 #[test]
386 fn slice_index() {
387 fn check(vec_slice: &[i32], set_slice: &Slice<i32>, sub_slice: &Slice<i32>) {
388 assert_eq!(set_slice as *const _, sub_slice as *const _);
389 itertools::assert_equal(vec_slice, set_slice);
390 }
391
392 let vec: Vec<i32> = (0..10).map(|i| i * i).collect();
393 let set: IndexSet<i32> = vec.iter().cloned().collect();
394 let slice = set.as_slice();
395
396 check(&vec[..], &set[..], &slice[..]);
398
399 for i in 0usize..10 {
400 assert_eq!(vec[i], set[i]);
402 assert_eq!(vec[i], slice[i]);
403
404 check(&vec[i..], &set[i..], &slice[i..]);
406
407 check(&vec[..i], &set[..i], &slice[..i]);
409
410 check(&vec[..=i], &set[..=i], &slice[..=i]);
412
413 let bounds = (Bound::Excluded(i), Bound::Unbounded);
415 check(&vec[i + 1..], &set[bounds], &slice[bounds]);
416
417 for j in i..=10 {
418 check(&vec[i..j], &set[i..j], &slice[i..j]);
420 }
421
422 for j in i..10 {
423 check(&vec[i..=j], &set[i..=j], &slice[i..=j]);
425 }
426 }
427 }
428}