2019-07-23 10:50:47 -05:00
|
|
|
use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
use std::fmt;
|
2016-06-09 17:49:07 -05:00
|
|
|
use std::fmt::Debug;
|
2018-07-02 09:55:44 -05:00
|
|
|
use std::hash::Hash;
|
2021-10-02 12:47:04 -05:00
|
|
|
use std::iter::FromIterator;
|
2016-06-07 09:28:36 -05:00
|
|
|
use std::marker::PhantomData;
|
2021-10-02 12:47:04 -05:00
|
|
|
use std::ops::{Index, IndexMut, RangeBounds};
|
2018-07-02 09:55:44 -05:00
|
|
|
use std::slice;
|
2016-06-07 09:28:36 -05:00
|
|
|
use std::vec;
|
|
|
|
|
|
|
|
/// Represents some newtyped `usize` wrapper.
|
|
|
|
///
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Purpose: avoid mixing indexes for different bitvector domains.
|
2021-10-30 10:11:50 -05:00
|
|
|
pub trait Idx: Copy + 'static + Eq + PartialEq + Debug + Hash {
|
2017-05-01 22:55:20 -05:00
|
|
|
fn new(idx: usize) -> Self;
|
2018-07-22 11:23:39 -05:00
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
fn index(self) -> usize;
|
2018-07-22 11:23:39 -05:00
|
|
|
|
|
|
|
fn increment_by(&mut self, amount: usize) {
|
2019-06-11 12:40:24 -05:00
|
|
|
*self = self.plus(amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn plus(self, amount: usize) -> Self {
|
|
|
|
Self::new(self.index() + amount)
|
2018-07-22 11:23:39 -05:00
|
|
|
}
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Idx for usize {
|
2018-02-21 11:20:09 -06:00
|
|
|
#[inline]
|
2016-06-07 09:28:36 -05:00
|
|
|
fn new(idx: usize) -> Self {
|
|
|
|
idx
|
|
|
|
}
|
2018-02-21 11:20:09 -06:00
|
|
|
#[inline]
|
2016-06-07 09:28:36 -05:00
|
|
|
fn index(self) -> usize {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-28 15:41:09 -05:00
|
|
|
impl Idx for u32 {
|
2018-02-21 11:20:09 -06:00
|
|
|
#[inline]
|
2016-06-28 15:41:09 -05:00
|
|
|
fn new(idx: usize) -> Self {
|
|
|
|
assert!(idx <= u32::MAX as usize);
|
|
|
|
idx as u32
|
|
|
|
}
|
2018-02-21 11:20:09 -06:00
|
|
|
#[inline]
|
2016-06-28 15:41:09 -05:00
|
|
|
fn index(self) -> usize {
|
|
|
|
self as usize
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-09 09:39:36 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash)]
|
2016-06-07 09:28:36 -05:00
|
|
|
pub struct IndexVec<I: Idx, T> {
|
|
|
|
pub raw: Vec<T>,
|
2017-12-03 07:22:23 -06:00
|
|
|
_marker: PhantomData<fn(&I)>,
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
|
2017-12-07 09:04:59 -06:00
|
|
|
// Whether `IndexVec` is `Send` depends only on the data,
|
|
|
|
// not the phantom data.
|
|
|
|
unsafe impl<I: Idx, T> Send for IndexVec<I, T> where T: Send {}
|
|
|
|
|
2020-06-11 09:49:57 -05:00
|
|
|
impl<S: Encoder, I: Idx, T: Encodable<S>> Encodable<S> for IndexVec<I, T> {
|
Use delayed error handling for `Encodable` and `Encoder` infallible.
There are two impls of the `Encoder` trait: `opaque::Encoder` and
`opaque::FileEncoder`. The former encodes into memory and is infallible, the
latter writes to file and is fallible.
Currently, standard `Result`/`?`/`unwrap` error handling is used, but this is a
bit verbose and has non-trivial cost, which is annoying given how rare failures
are (especially in the infallible `opaque::Encoder` case).
This commit changes how `Encoder` fallibility is handled. All the `emit_*`
methods are now infallible. `opaque::Encoder` requires no great changes for
this. `opaque::FileEncoder` now implements a delayed error handling strategy.
If a failure occurs, it records this via the `res` field, and all subsequent
encoding operations are skipped if `res` indicates an error has occurred. Once
encoding is complete, the new `finish` method is called, which returns a
`Result`. In other words, there is now a single `Result`-producing method
instead of many of them.
This has very little effect on how any file errors are reported if
`opaque::FileEncoder` has any failures.
Much of this commit is boring mechanical changes, removing `Result` return
values and `?` or `unwrap` from expressions. The more interesting parts are as
follows.
- serialize.rs: The `Encoder` trait gains an `Ok` associated type. The
`into_inner` method is changed into `finish`, which returns
`Result<Vec<u8>, !>`.
- opaque.rs: The `FileEncoder` adopts the delayed error handling
strategy. Its `Ok` type is a `usize`, returning the number of bytes
written, replacing previous uses of `FileEncoder::position`.
- Various methods that take an encoder now consume it, rather than being
passed a mutable reference, e.g. `serialize_query_result_cache`.
2022-06-06 22:30:45 -05:00
|
|
|
fn encode(&self, s: &mut S) {
|
|
|
|
Encodable::encode(&self.raw, s);
|
2020-06-11 09:49:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<D: Decoder, I: Idx, T: Decodable<D>> Decodable<D> for IndexVec<I, T> {
|
Make `Decodable` and `Decoder` infallible.
`Decoder` has two impls:
- opaque: this impl is already partly infallible, i.e. in some places it
currently panics on failure (e.g. if the input is too short, or on a
bad `Result` discriminant), and in some places it returns an error
(e.g. on a bad `Option` discriminant). The number of places where
either happens is surprisingly small, just because the binary
representation has very little redundancy and a lot of input reading
can occur even on malformed data.
- json: this impl is fully fallible, but it's only used (a) for the
`.rlink` file production, and there's a `FIXME` comment suggesting it
should change to a binary format, and (b) in a few tests in
non-fundamental ways. Indeed #85993 is open to remove it entirely.
And the top-level places in the compiler that call into decoding just
abort on error anyway. So the fallibility is providing little value, and
getting rid of it leads to some non-trivial performance improvements.
Much of this commit is pretty boring and mechanical. Some notes about
a few interesting parts:
- The commit removes `Decoder::{Error,error}`.
- `InternIteratorElement::intern_with`: the impl for `T` now has the same
optimization for small counts that the impl for `Result<T, E>` has,
because it's now much hotter.
- Decodable impls for SmallVec, LinkedList, VecDeque now all use
`collect`, which is nice; the one for `Vec` uses unsafe code, because
that gave better perf on some benchmarks.
2022-01-17 20:22:50 -06:00
|
|
|
fn decode(d: &mut D) -> Self {
|
|
|
|
IndexVec { raw: Decodable::decode(d), _marker: PhantomData }
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T: fmt::Debug> fmt::Debug for IndexVec<I, T> {
|
2019-02-08 10:36:22 -06:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2016-06-07 09:28:36 -05:00
|
|
|
fmt::Debug::fmt(&self.raw, fmt)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
pub fn new() -> Self {
|
|
|
|
IndexVec { raw: Vec::new(), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-05 10:06:38 -05:00
|
|
|
pub fn from_raw(raw: Vec<T>) -> Self {
|
|
|
|
IndexVec { raw, _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2016-06-07 09:28:36 -05:00
|
|
|
pub fn with_capacity(capacity: usize) -> Self {
|
|
|
|
IndexVec { raw: Vec::with_capacity(capacity), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn from_elem<S>(elem: T, universe: &IndexVec<I, S>) -> Self
|
|
|
|
where
|
|
|
|
T: Clone,
|
|
|
|
{
|
|
|
|
IndexVec { raw: vec![elem; universe.len()], _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
2016-06-09 17:49:07 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn from_elem_n(elem: T, n: usize) -> Self
|
|
|
|
where
|
|
|
|
T: Clone,
|
|
|
|
{
|
|
|
|
IndexVec { raw: vec![elem; n], _marker: PhantomData }
|
|
|
|
}
|
|
|
|
|
2019-10-08 18:26:57 -05:00
|
|
|
/// Create an `IndexVec` with `n` elements, where the value of each
|
2020-06-22 01:29:08 -05:00
|
|
|
/// element is the result of `func(i)`. (The underlying vector will
|
|
|
|
/// be allocated only once, with a capacity of at least `n`.)
|
2019-10-08 18:26:57 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn from_fn_n(func: impl FnMut(I) -> T, n: usize) -> Self {
|
|
|
|
let indices = (0..n).map(I::new);
|
|
|
|
Self::from_raw(indices.map(func).collect())
|
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn push(&mut self, d: T) -> I {
|
|
|
|
let idx = I::new(self.len());
|
|
|
|
self.raw.push(d);
|
|
|
|
idx
|
|
|
|
}
|
|
|
|
|
2017-11-05 13:06:46 -06:00
|
|
|
#[inline]
|
|
|
|
pub fn pop(&mut self) -> Option<T> {
|
|
|
|
self.raw.pop()
|
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn len(&self) -> usize {
|
|
|
|
self.raw.len()
|
|
|
|
}
|
|
|
|
|
2018-09-21 18:26:24 -05:00
|
|
|
/// Gives the next index that will be assigned when `push` is
|
|
|
|
/// called.
|
|
|
|
#[inline]
|
|
|
|
pub fn next_index(&self) -> I {
|
|
|
|
I::new(self.len())
|
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.raw.is_empty()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn into_iter(self) -> vec::IntoIter<T> {
|
|
|
|
self.raw.into_iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-10-02 12:47:04 -05:00
|
|
|
pub fn into_iter_enumerated(
|
|
|
|
self,
|
|
|
|
) -> impl DoubleEndedIterator<Item = (I, T)> + ExactSizeIterator {
|
|
|
|
self.raw.into_iter().enumerate().map(|(n, t)| (I::new(n), t))
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-08 10:36:22 -06:00
|
|
|
pub fn iter(&self) -> slice::Iter<'_, T> {
|
2016-06-07 09:28:36 -05:00
|
|
|
self.raw.iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-10-02 12:47:04 -05:00
|
|
|
pub fn iter_enumerated(
|
|
|
|
&self,
|
|
|
|
) -> impl DoubleEndedIterator<Item = (I, &T)> + ExactSizeIterator + '_ {
|
|
|
|
self.raw.iter().enumerate().map(|(n, t)| (I::new(n), t))
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
|
2016-06-07 13:20:50 -05:00
|
|
|
#[inline]
|
2022-06-20 10:50:27 -05:00
|
|
|
pub fn indices(
|
|
|
|
&self,
|
|
|
|
) -> impl DoubleEndedIterator<Item = I> + ExactSizeIterator + Clone + 'static {
|
2021-10-02 12:47:04 -05:00
|
|
|
(0..self.len()).map(|n| I::new(n))
|
2016-06-07 13:20:50 -05:00
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
#[inline]
|
2019-02-08 10:36:22 -06:00
|
|
|
pub fn iter_mut(&mut self) -> slice::IterMut<'_, T> {
|
2016-06-07 09:28:36 -05:00
|
|
|
self.raw.iter_mut()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-10-02 12:47:04 -05:00
|
|
|
pub fn iter_enumerated_mut(
|
|
|
|
&mut self,
|
|
|
|
) -> impl DoubleEndedIterator<Item = (I, &mut T)> + ExactSizeIterator + '_ {
|
|
|
|
self.raw.iter_mut().enumerate().map(|(n, t)| (I::new(n), t))
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
|
2017-02-08 03:19:22 -06:00
|
|
|
#[inline]
|
2021-10-15 04:24:20 -05:00
|
|
|
pub fn drain<'a, R: RangeBounds<usize>>(
|
|
|
|
&'a mut self,
|
|
|
|
range: R,
|
|
|
|
) -> impl Iterator<Item = T> + 'a {
|
2017-02-08 03:19:22 -06:00
|
|
|
self.raw.drain(range)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-10-15 04:24:20 -05:00
|
|
|
pub fn drain_enumerated<'a, R: RangeBounds<usize>>(
|
|
|
|
&'a mut self,
|
2017-02-08 03:19:22 -06:00
|
|
|
range: R,
|
2021-10-15 04:24:20 -05:00
|
|
|
) -> impl Iterator<Item = (I, T)> + 'a {
|
2021-10-02 12:47:04 -05:00
|
|
|
self.raw.drain(range).enumerate().map(|(n, t)| (I::new(n), t))
|
2017-02-08 03:19:22 -06:00
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn last(&self) -> Option<I> {
|
|
|
|
self.len().checked_sub(1).map(I::new)
|
|
|
|
}
|
2016-08-15 20:59:50 -05:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn shrink_to_fit(&mut self) {
|
|
|
|
self.raw.shrink_to_fit()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2018-07-22 11:23:39 -05:00
|
|
|
pub fn swap(&mut self, a: I, b: I) {
|
|
|
|
self.raw.swap(a.index(), b.index())
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn truncate(&mut self, a: usize) {
|
|
|
|
self.raw.truncate(a)
|
|
|
|
}
|
2017-02-08 03:19:22 -06:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn get(&self, index: I) -> Option<&T> {
|
|
|
|
self.raw.get(index.index())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn get_mut(&mut self, index: I) -> Option<&mut T> {
|
|
|
|
self.raw.get_mut(index.index())
|
|
|
|
}
|
2018-02-15 12:47:40 -06:00
|
|
|
|
2022-07-21 08:49:53 -05:00
|
|
|
/// Returns mutable references to two distinct elements, `a` and `b`.
|
|
|
|
///
|
|
|
|
/// Panics if `a == b`.
|
2018-02-15 12:47:40 -06:00
|
|
|
#[inline]
|
|
|
|
pub fn pick2_mut(&mut self, a: I, b: I) -> (&mut T, &mut T) {
|
|
|
|
let (ai, bi) = (a.index(), b.index());
|
|
|
|
assert!(ai != bi);
|
|
|
|
|
|
|
|
if ai < bi {
|
|
|
|
let (c1, c2) = self.raw.split_at_mut(bi);
|
|
|
|
(&mut c1[ai], &mut c2[0])
|
|
|
|
} else {
|
|
|
|
let (c2, c1) = self.pick2_mut(b, a);
|
|
|
|
(c1, c2)
|
|
|
|
}
|
|
|
|
}
|
2018-03-15 17:56:20 -05:00
|
|
|
|
2022-07-21 08:49:53 -05:00
|
|
|
/// Returns mutable references to three distinct elements.
|
|
|
|
///
|
|
|
|
/// Panics if the elements are not distinct.
|
2020-08-14 19:00:00 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn pick3_mut(&mut self, a: I, b: I, c: I) -> (&mut T, &mut T, &mut T) {
|
|
|
|
let (ai, bi, ci) = (a.index(), b.index(), c.index());
|
|
|
|
assert!(ai != bi && bi != ci && ci != ai);
|
|
|
|
let len = self.raw.len();
|
|
|
|
assert!(ai < len && bi < len && ci < len);
|
|
|
|
let ptr = self.raw.as_mut_ptr();
|
|
|
|
unsafe { (&mut *ptr.add(ai), &mut *ptr.add(bi), &mut *ptr.add(ci)) }
|
|
|
|
}
|
|
|
|
|
2018-03-15 17:56:20 -05:00
|
|
|
pub fn convert_index_type<Ix: Idx>(self) -> IndexVec<Ix, T> {
|
|
|
|
IndexVec { raw: self.raw, _marker: PhantomData }
|
|
|
|
}
|
2016-06-07 09:28:36 -05:00
|
|
|
|
2018-07-09 15:26:20 -05:00
|
|
|
/// Grows the index vector so that it contains an entry for
|
|
|
|
/// `elem`; if that is already true, then has no
|
|
|
|
/// effect. Otherwise, inserts new values as needed by invoking
|
|
|
|
/// `fill_value`.
|
|
|
|
#[inline]
|
|
|
|
pub fn ensure_contains_elem(&mut self, elem: I, fill_value: impl FnMut() -> T) {
|
|
|
|
let min_new_len = elem.index() + 1;
|
|
|
|
if self.len() < min_new_len {
|
|
|
|
self.raw.resize_with(min_new_len, fill_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn resize_to_elem(&mut self, elem: I, fill_value: impl FnMut() -> T) {
|
|
|
|
let min_new_len = elem.index() + 1;
|
|
|
|
self.raw.resize_with(min_new_len, fill_value);
|
|
|
|
}
|
2017-03-14 09:49:28 -05:00
|
|
|
}
|
|
|
|
|
2021-09-21 17:59:46 -05:00
|
|
|
/// `IndexVec` is often used as a map, so it provides some map-like APIs.
|
|
|
|
impl<I: Idx, T> IndexVec<I, Option<T>> {
|
|
|
|
#[inline]
|
|
|
|
pub fn insert(&mut self, index: I, value: T) -> Option<T> {
|
|
|
|
self.ensure_contains_elem(index, || None);
|
|
|
|
self[index].replace(value)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn get_or_insert_with(&mut self, index: I, value: impl FnOnce() -> T) -> &mut T {
|
|
|
|
self.ensure_contains_elem(index, || None);
|
|
|
|
self[index].get_or_insert_with(value)
|
|
|
|
}
|
2021-10-07 14:56:40 -05:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn remove(&mut self, index: I) -> Option<T> {
|
|
|
|
self.ensure_contains_elem(index, || None);
|
|
|
|
self[index].take()
|
|
|
|
}
|
2021-09-21 17:59:46 -05:00
|
|
|
}
|
|
|
|
|
2020-05-19 05:04:33 -05:00
|
|
|
impl<I: Idx, T: Clone> IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
pub fn resize(&mut self, new_len: usize, value: T) {
|
|
|
|
self.raw.resize(new_len, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 02:49:40 -05:00
|
|
|
impl<I: Idx, T: Ord> IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
pub fn binary_search(&self, value: &T) -> Result<I, I> {
|
|
|
|
match self.raw.binary_search(value) {
|
|
|
|
Ok(i) => Ok(Idx::new(i)),
|
|
|
|
Err(i) => Err(Idx::new(i)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
impl<I: Idx, T> Index<I> for IndexVec<I, T> {
|
|
|
|
type Output = T;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn index(&self, index: I) -> &T {
|
|
|
|
&self.raw[index.index()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IndexMut<I> for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn index_mut(&mut self, index: I) -> &mut T {
|
|
|
|
&mut self.raw[index.index()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-23 15:47:15 -05:00
|
|
|
impl<I: Idx, T> Default for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 09:28:36 -05:00
|
|
|
impl<I: Idx, T> Extend<T> for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn extend<J: IntoIterator<Item = T>>(&mut self, iter: J) {
|
|
|
|
self.raw.extend(iter);
|
|
|
|
}
|
2020-05-12 22:09:55 -05:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn extend_one(&mut self, item: T) {
|
|
|
|
self.raw.push(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn extend_reserve(&mut self, additional: usize) {
|
|
|
|
self.raw.reserve(additional);
|
|
|
|
}
|
2016-06-07 09:28:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> FromIterator<T> for IndexVec<I, T> {
|
|
|
|
#[inline]
|
|
|
|
fn from_iter<J>(iter: J) -> Self
|
|
|
|
where
|
|
|
|
J: IntoIterator<Item = T>,
|
|
|
|
{
|
|
|
|
IndexVec { raw: FromIterator::from_iter(iter), _marker: PhantomData }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I: Idx, T> IntoIterator for IndexVec<I, T> {
|
|
|
|
type Item = T;
|
|
|
|
type IntoIter = vec::IntoIter<T>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn into_iter(self) -> vec::IntoIter<T> {
|
|
|
|
self.raw.into_iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, I: Idx, T> IntoIterator for &'a IndexVec<I, T> {
|
|
|
|
type Item = &'a T;
|
|
|
|
type IntoIter = slice::Iter<'a, T>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn into_iter(self) -> slice::Iter<'a, T> {
|
|
|
|
self.raw.iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, I: Idx, T> IntoIterator for &'a mut IndexVec<I, T> {
|
|
|
|
type Item = &'a mut T;
|
|
|
|
type IntoIter = slice::IterMut<'a, T>;
|
|
|
|
|
|
|
|
#[inline]
|
2017-08-01 07:03:03 -05:00
|
|
|
fn into_iter(self) -> slice::IterMut<'a, T> {
|
2016-06-07 09:28:36 -05:00
|
|
|
self.raw.iter_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-05 09:01:00 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|