2020-10-24 02:20:16 +02:00
|
|
|
use rustc_index::vec::{Idx, IndexVec};
|
|
|
|
use std::mem;
|
|
|
|
|
2021-05-19 13:34:54 +02:00
|
|
|
pub trait IdFunctor: Sized {
|
2020-10-24 02:20:16 +02:00
|
|
|
type Inner;
|
|
|
|
|
2021-05-19 13:34:54 +02:00
|
|
|
fn try_map_id<F, E>(self, f: F) -> Result<Self, E>
|
|
|
|
where
|
|
|
|
F: FnMut(Self::Inner) -> Result<Self::Inner, E>;
|
2020-10-24 02:20:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> IdFunctor for Box<T> {
|
|
|
|
type Inner = T;
|
|
|
|
|
2021-05-19 13:34:54 +02:00
|
|
|
#[inline]
|
|
|
|
fn try_map_id<F, E>(self, mut f: F) -> Result<Self, E>
|
|
|
|
where
|
|
|
|
F: FnMut(Self::Inner) -> Result<Self::Inner, E>,
|
|
|
|
{
|
|
|
|
let raw = Box::into_raw(self);
|
|
|
|
Ok(unsafe {
|
|
|
|
// SAFETY: The raw pointer points to a valid value of type `T`.
|
2021-11-27 16:59:18 +00:00
|
|
|
let value = raw.read();
|
2021-05-19 13:34:54 +02:00
|
|
|
// SAFETY: Converts `Box<T>` to `Box<MaybeUninit<T>>` which is the
|
|
|
|
// inverse of `Box::assume_init()` and should be safe.
|
2021-09-13 15:44:27 +02:00
|
|
|
let raw: Box<mem::MaybeUninit<T>> = Box::from_raw(raw.cast());
|
2021-05-19 13:34:54 +02:00
|
|
|
// SAFETY: Write the mapped value back into the `Box`.
|
2021-09-13 15:44:27 +02:00
|
|
|
Box::write(raw, f(value)?)
|
2021-05-19 13:34:54 +02:00
|
|
|
})
|
|
|
|
}
|
2020-10-24 02:20:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> IdFunctor for Vec<T> {
|
|
|
|
type Inner = T;
|
|
|
|
|
2021-05-19 13:34:54 +02:00
|
|
|
#[inline]
|
2022-06-08 12:08:00 +01:00
|
|
|
fn try_map_id<F, E>(self, f: F) -> Result<Self, E>
|
2021-05-19 13:34:54 +02:00
|
|
|
where
|
|
|
|
F: FnMut(Self::Inner) -> Result<Self::Inner, E>,
|
|
|
|
{
|
2022-06-08 12:08:00 +01:00
|
|
|
self.into_iter().map(f).collect()
|
2021-05-19 13:34:54 +02:00
|
|
|
}
|
2020-10-24 02:20:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> IdFunctor for Box<[T]> {
|
|
|
|
type Inner = T;
|
|
|
|
|
2021-05-19 13:34:54 +02:00
|
|
|
#[inline]
|
|
|
|
fn try_map_id<F, E>(self, f: F) -> Result<Self, E>
|
|
|
|
where
|
|
|
|
F: FnMut(Self::Inner) -> Result<Self::Inner, E>,
|
|
|
|
{
|
|
|
|
Vec::from(self).try_map_id(f).map(Into::into)
|
|
|
|
}
|
2020-10-24 02:20:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IdFunctor for IndexVec<I, T> {
|
|
|
|
type Inner = T;
|
|
|
|
|
2021-05-19 13:34:54 +02:00
|
|
|
#[inline]
|
|
|
|
fn try_map_id<F, E>(self, f: F) -> Result<Self, E>
|
|
|
|
where
|
|
|
|
F: FnMut(Self::Inner) -> Result<Self::Inner, E>,
|
|
|
|
{
|
|
|
|
self.raw.try_map_id(f).map(IndexVec::from_raw)
|
|
|
|
}
|
2020-10-24 02:20:16 +02:00
|
|
|
}
|