File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/try/src/libcollections Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 023dfb0c898d851dee6ace2f8339b73b5287136b
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 023dfb0c898d851dee6ace2f8339b73b5287136b
5
- refs/heads/try: 72c8f3772bdca40ff2be2908aaf6b6a73d1c7821
5
+ refs/heads/try: c1f3acaa64a004577b79834996715595877efffc
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
8
8
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
Original file line number Diff line number Diff line change @@ -1475,7 +1475,7 @@ pub trait StrExt for Sized?: ops::Slice<uint, str> {
1475
1475
/// let x: &[_] = &['1', '2'];
1476
1476
/// assert_eq!(s.find(x), None);
1477
1477
/// ```
1478
- #[ unstable = "might be superseded by match_indices" ]
1478
+ #[ stable ]
1479
1479
fn find < P : CharEq > ( & self , pat : P ) -> Option < uint > {
1480
1480
core_str:: StrExt :: find ( self [ ] , pat)
1481
1481
}
@@ -1503,7 +1503,7 @@ pub trait StrExt for Sized?: ops::Slice<uint, str> {
1503
1503
/// let x: &[_] = &['1', '2'];
1504
1504
/// assert_eq!(s.rfind(x), None);
1505
1505
/// ```
1506
- #[ unstable = "might be superseded by match_indices" ]
1506
+ #[ stable ]
1507
1507
fn rfind < P : CharEq > ( & self , pat : P ) -> Option < uint > {
1508
1508
core_str:: StrExt :: rfind ( self [ ] , pat)
1509
1509
}
You can’t perform that action at this time.
0 commit comments