use #[deprecated]

This commit is contained in:
Richard Feldman 2024-10-21 22:34:29 -04:00
parent 9590db6bd0
commit 458899b25b
No known key found for this signature in database
GPG key ID: DAC334802F365236

View file

@ -4,7 +4,7 @@ pub type Index<T> = soa::Index<T>;
#[deprecated(note = "use soa::Slice instead")]
pub type Slice<T> = soa::Slice<T>;
/// DEPRECATED - use soa::EitherIndex directly instead!
#[deprecated(note = "use soa::EitherIndex instead")]
pub type EitherIndex<T, U> = soa::EitherIndex<T, U>;
/// Push to a std::vec::Vec<T> and then return an index to that new element's