We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
doc(hidden)
1 parent 7a53508 commit 576e704Copy full SHA for 576e704
library/core/src/ops/index_range.rs
@@ -1,5 +1,4 @@
1
#![unstable(feature = "std_internals", issue = "none")]
2
-#![doc(hidden)]
3
use crate::iter::{FusedIterator, TrustedLen};
4
use crate::num::NonZero;
5
use crate::ub_checks;
@@ -11,6 +10,7 @@ use crate::ub_checks;
11
10
/// (Normal `Range` code needs to handle degenerate ranges like `10..0`,
12
/// which takes extra checks compared to only handling the canonical form.)
13
#[derive(Clone, Debug, PartialEq, Eq)]
+#[doc(hidden)]
14
pub struct IndexRange {
15
start: usize,
16
end: usize,
0 commit comments