diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-12-22 19:46:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-22 19:46:13 +0100 |
| commit | 7fd41b5a73022eb933defc774287cea5857b352f (patch) | |
| tree | 80a40e35a8d337aa036703caa2a5a8027a40e8d8 | |
| parent | 19d749e5936583948575266765838fedf3699777 (diff) | |
| parent | 69038363986ed1fcc46dc5c5d53c6b95ab97f9e8 (diff) | |
| download | rust-7fd41b5a73022eb933defc774287cea5857b352f.tar.gz rust-7fd41b5a73022eb933defc774287cea5857b352f.zip | |
Rollup merge of #67506 - qnighy:remove-iter-private, r=Dylan-DPC
Remove iter_private.rs The contents of this file have been moved in #56932 (520e8b0) and the file should have been removed as well.
| -rw-r--r-- | src/libcore/iter_private.rs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/libcore/iter_private.rs b/src/libcore/iter_private.rs deleted file mode 100644 index 890db47b197..00000000000 --- a/src/libcore/iter_private.rs +++ /dev/null @@ -1,17 +0,0 @@ -/// An iterator whose items are random accessible efficiently -/// -/// # Safety -/// -/// The iterator's .len() and size_hint() must be exact. -/// `.len()` must be cheap to call. -/// -/// .get_unchecked() must return distinct mutable references for distinct -/// indices (if applicable), and must return a valid reference if index is in -/// 0..self.len(). -#[doc(hidden)] -pub unsafe trait TrustedRandomAccess : ExactSizeIterator { - unsafe fn get_unchecked(&mut self, i: usize) -> Self::Item; - /// Returns `true` if getting an iterator element may have - /// side effects. Remember to take inner iterators into account. - fn may_have_side_effect() -> bool; -} |
