Skip to content

Commit 1fe2f1d

Browse files
committed
---
yaml --- r: 276917 b: refs/heads/try c: a6c27be h: refs/heads/master i: 276915: fa79e75
1 parent be25a34 commit 1fe2f1d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 6dbb0e86aec11050480beb76eade6fb805010ba7
33
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4-
refs/heads/try: 28c4d12c031aba96acf72d30dfaa22a51fcf719e
4+
refs/heads/try: a6c27be0b1074684ae918ab7132bbeb8f75d4f2a
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/libcore/slice.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1672,6 +1672,7 @@ impl<T: PartialOrd> PartialOrd for [T] {
16721672
}
16731673
}
16741674

1675+
#[doc(hidden)]
16751676
// intermediate trait for specialization of slice's PartialEq
16761677
trait SlicePartialEq<B> {
16771678
fn equal(&self, other: &[B]) -> bool;
@@ -1731,6 +1732,7 @@ impl<A> SlicePartialEq<A> for [A]
17311732
}
17321733
}
17331734

1735+
#[doc(hidden)]
17341736
// intermediate trait for specialization of slice's PartialOrd
17351737
trait SlicePartialOrd<B> {
17361738
fn partial_compare(&self, other: &[B]) -> Option<Ordering>;
@@ -1765,6 +1767,7 @@ impl SlicePartialOrd<u8> for [u8] {
17651767
}
17661768
}
17671769

1770+
#[doc(hidden)]
17681771
// intermediate trait for specialization of slice's Ord
17691772
trait SliceOrd<B> {
17701773
fn compare(&self, other: &[B]) -> Ordering;
@@ -1811,6 +1814,7 @@ impl SliceOrd<u8> for [u8] {
18111814
}
18121815
}
18131816

1817+
#[doc(hidden)]
18141818
/// Trait implemented for types that can be compared for equality using
18151819
/// their bytewise representation
18161820
trait BytewiseEquality { }

0 commit comments

Comments
 (0)