@@ -115,6 +115,7 @@ impl<Idx: PartialOrd<Idx>> Range<Idx> {
115
115
/// assert!(!(0.0..f32::NAN).contains(&0.5));
116
116
/// assert!(!(f32::NAN..1.0).contains(&0.5));
117
117
/// ```
118
+ #[ inline]
118
119
#[ stable( feature = "range_contains" , since = "1.35.0" ) ]
119
120
pub fn contains < U > ( & self , item : & U ) -> bool
120
121
where
@@ -141,6 +142,7 @@ impl<Idx: PartialOrd<Idx>> Range<Idx> {
141
142
/// assert!( (3.0..f32::NAN).is_empty());
142
143
/// assert!( (f32::NAN..5.0).is_empty());
143
144
/// ```
145
+ #[ inline]
144
146
#[ stable( feature = "range_is_empty" , since = "1.47.0" ) ]
145
147
pub fn is_empty ( & self ) -> bool {
146
148
!( self . start < self . end )
@@ -213,6 +215,7 @@ impl<Idx: PartialOrd<Idx>> RangeFrom<Idx> {
213
215
/// assert!(!(0.0..).contains(&f32::NAN));
214
216
/// assert!(!(f32::NAN..).contains(&0.5));
215
217
/// ```
218
+ #[ inline]
216
219
#[ stable( feature = "range_contains" , since = "1.35.0" ) ]
217
220
pub fn contains < U > ( & self , item : & U ) -> bool
218
221
where
@@ -294,6 +297,7 @@ impl<Idx: PartialOrd<Idx>> RangeTo<Idx> {
294
297
/// assert!(!(..1.0).contains(&f32::NAN));
295
298
/// assert!(!(..f32::NAN).contains(&0.5));
296
299
/// ```
300
+ #[ inline]
297
301
#[ stable( feature = "range_contains" , since = "1.35.0" ) ]
298
302
pub fn contains < U > ( & self , item : & U ) -> bool
299
303
where
@@ -500,6 +504,7 @@ impl<Idx: PartialOrd<Idx>> RangeInclusive<Idx> {
500
504
/// // Precise field values are unspecified here
501
505
/// assert!(!r.contains(&3) && !r.contains(&5));
502
506
/// ```
507
+ #[ inline]
503
508
#[ stable( feature = "range_contains" , since = "1.35.0" ) ]
504
509
pub fn contains < U > ( & self , item : & U ) -> bool
505
510
where
@@ -613,6 +618,7 @@ impl<Idx: PartialOrd<Idx>> RangeToInclusive<Idx> {
613
618
/// assert!(!(..=1.0).contains(&f32::NAN));
614
619
/// assert!(!(..=f32::NAN).contains(&0.5));
615
620
/// ```
621
+ #[ inline]
616
622
#[ stable( feature = "range_contains" , since = "1.35.0" ) ]
617
623
pub fn contains < U > ( & self , item : & U ) -> bool
618
624
where
@@ -808,6 +814,7 @@ pub trait RangeBounds<T: ?Sized> {
808
814
/// assert!(!(0.0..1.0).contains(&f32::NAN));
809
815
/// assert!(!(0.0..f32::NAN).contains(&0.5));
810
816
/// assert!(!(f32::NAN..1.0).contains(&0.5));
817
+ #[ inline]
811
818
#[ stable( feature = "range_contains" , since = "1.35.0" ) ]
812
819
fn contains < U > ( & self , item : & U ) -> bool
813
820
where
0 commit comments