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
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
//! Atomic runtime borrow checking module.
//! These types implement something akin to `RefCell`, but are atomically handled allowing them to
//! cross thread boundaries.
use std::cell::UnsafeCell;
use std::hash::{Hash, Hasher};
use std::ops::Deref;
use std::ops::DerefMut;
use std::sync::atomic::AtomicIsize;

#[cfg(not(debug_assertions))]
use std::marker::PhantomData;

/// A `RefCell` implementation which is thread safe. This type performs all the standard runtime
/// borrow checking which would be familiar from using `RefCell`.
///
/// `UnsafeCell` is used in this type, but borrow checking is performed using atomic values,
/// garunteeing safe access across threads.
///
/// # Safety
/// Runtime borrow checking is only conducted in builds with `debug_assertions` enabled. Release
/// builds assume proper resource access and will cause undefined behavior with improper use.
pub struct AtomicRefCell<T> {
    value: UnsafeCell<T>,
    borrow_state: AtomicIsize,
}

impl<T: Default> Default for AtomicRefCell<T> {
    fn default() -> Self { Self::new(T::default()) }
}

impl<T: std::fmt::Debug> std::fmt::Debug for AtomicRefCell<T> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "({:?}) {:?}", self.borrow_state, self.value)
    }
}

impl<T> AtomicRefCell<T> {
    pub fn new(value: T) -> Self {
        AtomicRefCell {
            value: UnsafeCell::from(value),
            borrow_state: AtomicIsize::from(0),
        }
    }

    /// Retrieve an immutable `Ref` wrapped reference of `&T`.
    ///
    /// # Panics
    ///
    /// This method panics if this value is already mutably borrowed.
    ///
    /// # Safety
    /// Runtime borrow checking is only conducted in builds with `debug_assertions` enabled. Release
    /// builds assume proper resource access and will cause undefined behavior with improper use.
    #[inline(always)]
    pub fn get(&self) -> Ref<T> { self.try_get().unwrap() }

    /// Unwrap the value from the RefCell and kill it, returning the value.
    pub fn into_inner(self) -> T { self.value.into_inner() }

    /// Retrieve an immutable `Ref` wrapped reference of `&T`. This is the safe version of `get`
    /// providing an error result on failure.
    ///
    /// # Returns
    ///
    /// `Some(T)` if the value can be retrieved.
    /// `Err` if the value is already mutably borrowed.
    #[cfg(debug_assertions)]
    pub fn try_get(&self) -> Result<Ref<T>, String> {
        loop {
            let read = self.borrow_state.load(std::sync::atomic::Ordering::SeqCst);
            if read < 0 {
                return Err(format!(
                    "resource already borrowed as mutable: {}",
                    std::any::type_name::<T>()
                ));
            }

            if self.borrow_state.compare_and_swap(
                read,
                read + 1,
                std::sync::atomic::Ordering::SeqCst,
            ) == read
            {
                break;
            }
        }

        Ok(Ref::new(Shared::new(&self.borrow_state), unsafe {
            &*self.value.get()
        }))
    }

    /// Retrieve an immutable `Ref` wrapped reference of `&T`. This is the safe version of `get`
    /// providing an error result on failure.
    ///
    /// # Returns
    ///
    /// `Some(T)` if the value can be retrieved.
    /// `Err` if the value is already mutably borrowed.
    ///
    /// # Safety
    ///
    /// This release version of this function does not perform runtime borrow checking and will
    /// cause undefined behavior if borrow rules are violated. This means they should be enforced
    /// on the use of this type.
    #[cfg(not(debug_assertions))]
    #[inline(always)]
    pub fn try_get(&self) -> Result<Ref<T>, &'static str> {
        Ok(Ref::new(Shared::new(&self.borrow_state), unsafe {
            &*self.value.get()
        }))
    }

    /// Retrieve an mutable `RefMut` wrapped reference of `&mut T`.
    ///
    /// # Panics
    ///
    /// This method panics if this value is already mutably borrowed.
    ///
    /// # Safety
    /// Runtime borrow checking is only conducted in builds with `debug_assertions` enabled. Release
    /// builds assume proper resource access and will cause undefined behavior with improper use.
    #[inline(always)]
    pub fn get_mut(&self) -> RefMut<T> { self.try_get_mut().unwrap() }

    /// Retrieve a mutable `RefMut` wrapped reference of `&mut T`. This is the safe version of
    /// `get_mut` providing an error result on failure.
    ///
    /// # Returns
    ///
    /// `Some(T)` if the value can be retrieved.
    /// `Err` if the value is already mutably borrowed.
    ///
    /// # Safety
    ///
    /// This release version of this function does not perform runtime borrow checking and will
    /// cause undefined behavior if borrow rules are violated. This means they should be enforced
    /// on the use of this type.
    #[cfg(debug_assertions)]
    pub fn try_get_mut(&self) -> Result<RefMut<T>, String> {
        let borrowed =
            self.borrow_state
                .compare_and_swap(0, -1, std::sync::atomic::Ordering::SeqCst);
        match borrowed {
            0 => Ok(RefMut::new(Exclusive::new(&self.borrow_state), unsafe {
                &mut *self.value.get()
            })),
            x if x < 0 => Err(format!(
                "resource already borrowed as mutable: {}",
                std::any::type_name::<T>()
            )),
            _ => Err(format!(
                "resource already borrowed as immutable: {}",
                std::any::type_name::<T>()
            )),
        }
    }

    /// Retrieve a mutable `RefMut` wrapped reference of `&mut T`. This is the safe version of
    /// `get_mut` providing an error result on failure.
    ///
    /// # Returns
    ///
    /// `Some(T)` if the value can be retrieved.
    /// `Err` if the value is already mutably borrowed.
    ///
    /// # Safety
    ///
    /// This release version of this function does not perform runtime borrow checking and will
    /// cause undefined behavior if borrow rules are violated. This means they should be enforced
    /// on the use of this type.
    #[cfg(not(debug_assertions))]
    #[inline(always)]
    pub fn try_get_mut(&self) -> Result<RefMut<T>, &'static str> {
        Ok(RefMut::new(Exclusive::new(&self.borrow_state), unsafe {
            &mut *self.value.get()
        }))
    }
}

unsafe impl<T: Send> Send for AtomicRefCell<T> {}

unsafe impl<T: Sync> Sync for AtomicRefCell<T> {}

/// Type used for allowing unsafe cloning of internal types
pub trait UnsafeClone {
    /// Clone this type unsafely
    ///
    /// # Safety
    /// Types implementing this trait perform clones under an unsafe context.
    unsafe fn clone(&self) -> Self;
}

impl<A: UnsafeClone, B: UnsafeClone> UnsafeClone for (A, B) {
    unsafe fn clone(&self) -> Self { (self.0.clone(), self.1.clone()) }
}

#[derive(Debug)]
pub struct Shared<'a> {
    #[cfg(debug_assertions)]
    state: &'a AtomicIsize,
    #[cfg(not(debug_assertions))]
    state: PhantomData<&'a ()>,
}

impl<'a> Shared<'a> {
    #[cfg(debug_assertions)]
    fn new(state: &'a AtomicIsize) -> Self { Self { state } }
    #[cfg(not(debug_assertions))]
    #[inline(always)]
    fn new(_: &'a AtomicIsize) -> Self { Self { state: PhantomData } }
}

#[cfg(debug_assertions)]
impl<'a> Drop for Shared<'a> {
    fn drop(&mut self) { self.state.fetch_sub(1, std::sync::atomic::Ordering::SeqCst); }
}

impl<'a> Clone for Shared<'a> {
    #[inline(always)]
    fn clone(&self) -> Self {
        #[cfg(debug_assertions)]
        self.state.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
        Shared { state: self.state }
    }
}

impl<'a> UnsafeClone for Shared<'a> {
    unsafe fn clone(&self) -> Self { Clone::clone(&self) }
}

#[derive(Debug)]
pub struct Exclusive<'a> {
    #[cfg(debug_assertions)]
    state: &'a AtomicIsize,
    #[cfg(not(debug_assertions))]
    state: PhantomData<&'a ()>,
}

impl<'a> Exclusive<'a> {
    #[cfg(debug_assertions)]
    fn new(state: &'a AtomicIsize) -> Self { Self { state } }
    #[cfg(not(debug_assertions))]
    #[inline(always)]
    fn new(_: &'a AtomicIsize) -> Self { Self { state: PhantomData } }
}

#[cfg(debug_assertions)]
impl<'a> Drop for Exclusive<'a> {
    fn drop(&mut self) { self.state.fetch_add(1, std::sync::atomic::Ordering::SeqCst); }
}

impl<'a> UnsafeClone for Exclusive<'a> {
    #[inline(always)]
    unsafe fn clone(&self) -> Self {
        #[cfg(debug_assertions)]
        self.state.fetch_sub(1, std::sync::atomic::Ordering::SeqCst);
        Exclusive { state: self.state }
    }
}

#[derive(Debug)]
pub struct Ref<'a, T: 'a> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Shared<'a>,
    value: &'a T,
}

impl<'a, T: 'a> Clone for Ref<'a, T> {
    #[inline(always)]
    fn clone(&self) -> Self { Ref::new(Clone::clone(&self.borrow), self.value) }
}

impl<'a, T: 'a> Ref<'a, T> {
    #[inline(always)]
    pub fn new(borrow: Shared<'a>, value: &'a T) -> Self { Self { borrow, value } }

    #[inline(always)]
    pub fn map_into<K: 'a, F: FnMut(&'a T) -> K>(self, mut f: F) -> RefMap<'a, K> {
        RefMap::new(self.borrow, f(&self.value))
    }

    #[inline(always)]
    pub fn map<K: 'a, F: FnMut(&T) -> &K>(&self, mut f: F) -> Ref<'a, K> {
        Ref::new(Clone::clone(&self.borrow), f(&self.value))
    }

    /// Deconstructs this mapped borrow to its underlying borrow state and value.
    ///
    /// # Safety
    ///
    /// Ensure that you still follow all safety guidelines of this mapped ref.
    #[inline(always)]
    pub unsafe fn deconstruct(self) -> (Shared<'a>, &'a T) { (self.borrow, self.value) }
}

impl<'a, T: 'a> Deref for Ref<'a, T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target { self.value }
}

impl<'a, T: 'a> AsRef<T> for Ref<'a, T> {
    #[inline(always)]
    fn as_ref(&self) -> &T { self.value }
}

impl<'a, T: 'a> std::borrow::Borrow<T> for Ref<'a, T> {
    #[inline(always)]
    fn borrow(&self) -> &T { self.value }
}

impl<'a, T> PartialEq for Ref<'a, T>
where
    T: 'a + PartialEq,
{
    fn eq(&self, other: &Self) -> bool { self.value == other.value }
}
impl<'a, T> Eq for Ref<'a, T> where T: 'a + Eq {}

impl<'a, T> PartialOrd for Ref<'a, T>
where
    T: 'a + PartialOrd,
{
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        self.value.partial_cmp(&other.value)
    }
}
impl<'a, T> Ord for Ref<'a, T>
where
    T: 'a + Ord,
{
    fn cmp(&self, other: &Self) -> std::cmp::Ordering { self.value.cmp(&other.value) }
}

impl<'a, T> Hash for Ref<'a, T>
where
    T: 'a + Hash,
{
    fn hash<H: Hasher>(&self, state: &mut H) { self.value.hash(state); }
}

#[derive(Debug)]
pub struct RefMut<'a, T: 'a> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Exclusive<'a>,
    value: &'a mut T,
}

impl<'a, T: 'a> RefMut<'a, T> {
    #[inline(always)]
    pub fn new(borrow: Exclusive<'a>, value: &'a mut T) -> Self { Self { borrow, value } }

    #[inline(always)]
    pub fn map_into<K: 'a, F: FnMut(&mut T) -> K>(mut self, mut f: F) -> RefMapMut<'a, K> {
        RefMapMut::new(self.borrow, f(&mut self.value))
    }

    /// Deconstructs this mapped borrow to its underlying borrow state and value.
    ///
    /// # Safety
    ///
    /// Ensure that you still follow all safety guidelines of this mapped ref.
    #[inline(always)]
    pub unsafe fn deconstruct(self) -> (Exclusive<'a>, &'a mut T) { (self.borrow, self.value) }

    #[inline(always)]
    pub fn split<First, Rest, F: Fn(&'a mut T) -> (&'a mut First, &'a mut Rest)>(
        self,
        f: F,
    ) -> (RefMut<'a, First>, RefMut<'a, Rest>) {
        let (first, rest) = f(self.value);
        (
            RefMut::new(unsafe { self.borrow.clone() }, first),
            RefMut::new(self.borrow, rest),
        )
    }
}

impl<'a, T: 'a> Deref for RefMut<'a, T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target { self.value }
}

impl<'a, T: 'a> DerefMut for RefMut<'a, T> {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target { self.value }
}

impl<'a, T: 'a> AsRef<T> for RefMut<'a, T> {
    #[inline(always)]
    fn as_ref(&self) -> &T { self.value }
}

impl<'a, T: 'a> AsMut<T> for RefMut<'a, T> {
    #[inline(always)]
    fn as_mut(&mut self) -> &mut T { self.value }
}

impl<'a, T: 'a> std::borrow::Borrow<T> for RefMut<'a, T> {
    #[inline(always)]
    fn borrow(&self) -> &T { self.value }
}

impl<'a, T> PartialEq for RefMut<'a, T>
where
    T: 'a + PartialEq,
{
    fn eq(&self, other: &Self) -> bool { self.value == other.value }
}
impl<'a, T> Eq for RefMut<'a, T> where T: 'a + Eq {}

impl<'a, T> PartialOrd for RefMut<'a, T>
where
    T: 'a + PartialOrd,
{
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        self.value.partial_cmp(&other.value)
    }
}
impl<'a, T> Ord for RefMut<'a, T>
where
    T: 'a + Ord,
{
    fn cmp(&self, other: &Self) -> std::cmp::Ordering { self.value.cmp(&other.value) }
}

impl<'a, T> Hash for RefMut<'a, T>
where
    T: 'a + Hash,
{
    fn hash<H: Hasher>(&self, state: &mut H) { self.value.hash(state); }
}

#[derive(Debug)]
pub struct RefMap<'a, T: 'a> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Shared<'a>,
    value: T,
}

impl<'a, T: 'a> RefMap<'a, T> {
    #[inline(always)]
    pub fn new(borrow: Shared<'a>, value: T) -> Self { Self { borrow, value } }

    #[inline(always)]
    pub fn map_into<K: 'a, F: FnMut(&mut T) -> K>(mut self, mut f: F) -> RefMap<'a, K> {
        RefMap::new(self.borrow, f(&mut self.value))
    }

    /// Deconstructs this mapped borrow to its underlying borrow state and value.
    ///
    /// # Safety
    ///
    /// Ensure that you still follow all safety guidelines of this  mapped ref.
    #[inline(always)]
    pub unsafe fn deconstruct(self) -> (Shared<'a>, T) { (self.borrow, self.value) }
}

impl<'a, T: 'a> Deref for RefMap<'a, T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target { &self.value }
}

impl<'a, T: 'a> AsRef<T> for RefMap<'a, T> {
    #[inline(always)]
    fn as_ref(&self) -> &T { &self.value }
}

impl<'a, T: 'a> std::borrow::Borrow<T> for RefMap<'a, T> {
    #[inline(always)]
    fn borrow(&self) -> &T { &self.value }
}

#[derive(Debug)]
pub struct RefMapMut<'a, T: 'a> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Exclusive<'a>,
    value: T,
}

impl<'a, T: 'a> RefMapMut<'a, T> {
    #[inline(always)]
    pub fn new(borrow: Exclusive<'a>, value: T) -> Self { Self { borrow, value } }

    #[inline(always)]
    pub fn map_into<K: 'a, F: FnMut(&mut T) -> K>(mut self, mut f: F) -> RefMapMut<'a, K> {
        RefMapMut {
            value: f(&mut self.value),
            borrow: self.borrow,
        }
    }

    /// Deconstructs this mapped borrow to its underlying borrow state and value.
    ///
    /// # Safety
    ///
    /// Ensure that you still follow all safety guidelines of this mutable mapped ref.
    #[inline(always)]
    pub unsafe fn deconstruct(self) -> (Exclusive<'a>, T) { (self.borrow, self.value) }
}

impl<'a, T: 'a> Deref for RefMapMut<'a, T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target { &self.value }
}

impl<'a, T: 'a> DerefMut for RefMapMut<'a, T> {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target { &mut self.value }
}

impl<'a, T: 'a> AsRef<T> for RefMapMut<'a, T> {
    #[inline(always)]
    fn as_ref(&self) -> &T { &self.value }
}

impl<'a, T: 'a> AsMut<T> for RefMapMut<'a, T> {
    #[inline(always)]
    fn as_mut(&mut self) -> &mut T { &mut self.value }
}

impl<'a, T: 'a> std::borrow::Borrow<T> for RefMapMut<'a, T> {
    #[inline(always)]
    fn borrow(&self) -> &T { &self.value }
}

#[derive(Debug)]
pub struct RefIter<'a, T: 'a, I: Iterator<Item = &'a T>> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Shared<'a>,
    iter: I,
}

impl<'a, T: 'a, I: Iterator<Item = &'a T>> RefIter<'a, T, I> {
    #[inline(always)]
    pub fn new(borrow: Shared<'a>, iter: I) -> Self { Self { borrow, iter } }
}

impl<'a, T: 'a, I: Iterator<Item = &'a T>> Iterator for RefIter<'a, T, I> {
    type Item = Ref<'a, T>;

    #[inline(always)]
    fn next(&mut self) -> Option<Self::Item> {
        if let Some(item) = self.iter.next() {
            Some(Ref::new(Clone::clone(&self.borrow), item))
        } else {
            None
        }
    }

    fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
}

impl<'a, T: 'a, I: Iterator<Item = &'a T> + ExactSizeIterator> ExactSizeIterator
    for RefIter<'a, T, I>
{
}

#[derive(Debug)]
enum TryIter<State, T> {
    Found { borrow: State, iter: T },
    Missing(usize),
}

#[derive(Debug)]
pub struct TryRefIter<'a, T: 'a, I: Iterator<Item = &'a T>> {
    inner: TryIter<Shared<'a>, I>,
}

impl<'a, T: 'a, I: Iterator<Item = &'a T>> TryRefIter<'a, T, I> {
    #[inline(always)]
    pub(crate) fn found(borrow: Shared<'a>, iter: I) -> Self {
        Self {
            inner: TryIter::Found { borrow, iter },
        }
    }

    #[inline(always)]
    pub(crate) fn missing(count: usize) -> Self {
        Self {
            inner: TryIter::Missing(count),
        }
    }
}

impl<'a, T: 'a, I: Iterator<Item = &'a T>> Iterator for TryRefIter<'a, T, I> {
    type Item = Option<Ref<'a, T>>;

    #[inline(always)]
    fn next(&mut self) -> Option<Self::Item> {
        Some(match self.inner {
            TryIter::Found {
                ref borrow,
                ref mut iter,
                ..
            } => Some(Ref::new(Clone::clone(borrow), iter.next()?)),
            TryIter::Missing(ref mut n) => {
                *n = n.checked_sub(1)?;
                None
            }
        })
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        match self.inner {
            TryIter::Found { ref iter, .. } => iter.size_hint(),
            TryIter::Missing(n) => (n, Some(n)),
        }
    }
}

impl<'a, T: 'a, I: Iterator<Item = &'a T> + ExactSizeIterator> ExactSizeIterator
    for TryRefIter<'a, T, I>
{
}

#[derive(Debug)]
pub struct RefIterMut<'a, T: 'a, I: Iterator<Item = &'a mut T>> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Exclusive<'a>,
    iter: I,
}

impl<'a, T: 'a, I: Iterator<Item = &'a mut T>> RefIterMut<'a, T, I> {
    #[inline(always)]
    pub fn new(borrow: Exclusive<'a>, iter: I) -> Self { Self { borrow, iter } }
}

impl<'a, T: 'a, I: Iterator<Item = &'a mut T>> Iterator for RefIterMut<'a, T, I> {
    type Item = RefMut<'a, T>;

    #[inline(always)]
    fn next(&mut self) -> Option<Self::Item> {
        if let Some(item) = self.iter.next() {
            Some(RefMut::new(unsafe { self.borrow.clone() }, item))
        } else {
            None
        }
    }

    fn size_hint(&self) -> (usize, Option<usize>) { self.iter.size_hint() }
}

impl<'a, T: 'a, I: Iterator<Item = &'a mut T> + ExactSizeIterator> ExactSizeIterator
    for RefIterMut<'a, T, I>
{
}

#[derive(Debug)]
pub struct TryRefIterMut<'a, T: 'a, I: Iterator<Item = &'a mut T>> {
    inner: TryIter<Exclusive<'a>, I>,
}

impl<'a, T: 'a, I: Iterator<Item = &'a mut T>> TryRefIterMut<'a, T, I> {
    #[inline(always)]
    pub(crate) fn found(borrow: Exclusive<'a>, iter: I) -> Self {
        Self {
            inner: TryIter::Found { borrow, iter },
        }
    }

    #[inline(always)]
    pub(crate) fn missing(count: usize) -> Self {
        Self {
            inner: TryIter::Missing(count),
        }
    }
}

impl<'a, T: 'a, I: Iterator<Item = &'a mut T>> Iterator for TryRefIterMut<'a, T, I> {
    type Item = Option<RefMut<'a, T>>;

    #[inline(always)]
    fn next(&mut self) -> Option<Self::Item> {
        Some(match self.inner {
            TryIter::Found {
                ref borrow,
                ref mut iter,
                ..
            } => Some(RefMut::new(unsafe { borrow.clone() }, iter.next()?)),
            TryIter::Missing(ref mut n) => {
                *n = n.checked_sub(1)?;
                None
            }
        })
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        match self.inner {
            TryIter::Found { ref iter, .. } => iter.size_hint(),
            TryIter::Missing(n) => (n, Some(n)),
        }
    }
}

impl<'a, T: 'a, I: Iterator<Item = &'a mut T> + ExactSizeIterator> ExactSizeIterator
    for TryRefIterMut<'a, T, I>
{
}

/// A set of RefMaps
#[derive(Debug)]
pub struct RefMapSet<'a, T: 'a> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Vec<Shared<'a>>,
    value: T,
}

impl<'a, T: 'a> RefMapSet<'a, T> {
    #[inline(always)]
    pub fn new(borrow: Vec<Shared<'a>>, value: T) -> Self { Self { borrow, value } }

    #[inline(always)]
    pub fn map_into<K: 'a, F: FnMut(&mut T) -> K>(mut self, mut f: F) -> RefMapSet<'a, K> {
        RefMapSet::new(self.borrow, f(&mut self.value))
    }

    /// Deconstructs this mapped borrow to its underlying borrow state and value.
    ///
    /// # Safety
    ///
    /// Ensure that you still follow all safety guidelines of this  mapped ref.
    #[inline(always)]
    pub unsafe fn deconstruct(self) -> (Vec<Shared<'a>>, T) { (self.borrow, self.value) }
}

impl<'a, T: 'a> Deref for RefMapSet<'a, T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target { &self.value }
}

impl<'a, T: 'a> AsRef<T> for RefMapSet<'a, T> {
    #[inline(always)]
    fn as_ref(&self) -> &T { &self.value }
}

impl<'a, T: 'a> std::borrow::Borrow<T> for RefMapSet<'a, T> {
    #[inline(always)]
    fn borrow(&self) -> &T { &self.value }
}

/// A set of RefMapMuts
#[derive(Debug)]
pub struct RefMapMutSet<'a, T: 'a> {
    #[allow(dead_code)]
    // held for drop impl
    borrow: Vec<Exclusive<'a>>,
    value: T,
}

impl<'a, T: 'a> RefMapMutSet<'a, T> {
    #[inline(always)]
    pub fn new(borrow: Vec<Exclusive<'a>>, value: T) -> Self { Self { borrow, value } }

    #[inline(always)]
    pub fn map_into<K: 'a, F: FnMut(&mut T) -> K>(mut self, mut f: F) -> RefMapMutSet<'a, K> {
        RefMapMutSet {
            value: f(&mut self.value),
            borrow: self.borrow,
        }
    }

    /// Deconstructs this mapped borrow to its underlying borrow state and value.
    ///
    /// # Safety
    ///
    /// Ensure that you still follow all safety guidelines of this mutable mapped ref.
    #[inline(always)]
    pub unsafe fn deconstruct(self) -> (Vec<Exclusive<'a>>, T) { (self.borrow, self.value) }
}

impl<'a, T: 'a> Deref for RefMapMutSet<'a, T> {
    type Target = T;

    #[inline(always)]
    fn deref(&self) -> &Self::Target { &self.value }
}

impl<'a, T: 'a> DerefMut for RefMapMutSet<'a, T> {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target { &mut self.value }
}

impl<'a, T: 'a> AsRef<T> for RefMapMutSet<'a, T> {
    #[inline(always)]
    fn as_ref(&self) -> &T { &self.value }
}

impl<'a, T: 'a> std::borrow::Borrow<T> for RefMapMutSet<'a, T> {
    #[inline(always)]
    fn borrow(&self) -> &T { &self.value }
}