File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -1135,8 +1135,10 @@ pub enum ProjectionElem<V, T> {
1135
1135
ConstantIndex {
1136
1136
/// index or -index (in Python terms), depending on from_end
1137
1137
offset : u64 ,
1138
- /// The thing being indexed must be at least this long. For arrays this
1139
- /// is always the exact length.
1138
+ /// The thing being indexed must be at least this long -- otherwise, the
1139
+ /// projection is UB.
1140
+ ///
1141
+ /// For arrays this is always the exact length.
1140
1142
min_length : u64 ,
1141
1143
/// Counting backwards from end? This is always false when indexing an
1142
1144
/// array.
Original file line number Diff line number Diff line change @@ -768,8 +768,10 @@ pub enum ProjectionElem {
768
768
ConstantIndex {
769
769
/// index or -index (in Python terms), depending on from_end
770
770
offset : u64 ,
771
- /// The thing being indexed must be at least this long. For arrays this
772
- /// is always the exact length.
771
+ /// The thing being indexed must be at least this long -- otherwise, the
772
+ /// projection is UB.
773
+ ///
774
+ /// For arrays this is always the exact length.
773
775
min_length : u64 ,
774
776
/// Counting backwards from end? This is always false when indexing an
775
777
/// array.
You can’t perform that action at this time.
0 commit comments