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.
1 parent 29e500d commit dd071eeCopy full SHA for dd071ee
src/libsemver/lib.rs
@@ -151,19 +151,6 @@ impl cmp::Ord for Version {
151
(_, _) => self.pre < other.pre
152
}))
153
}
154
-
155
- #[inline]
156
- fn le(&self, other: &Version) -> bool {
157
- ! (other < self)
158
- }
159
160
- fn gt(&self, other: &Version) -> bool {
161
- other < self
162
163
164
- fn ge(&self, other: &Version) -> bool {
165
- ! (self < other)
166
167
168
169
fn take_nonempty_prefix<T:Iterator<char>>(rdr: &mut T, pred: |char| -> bool)
0 commit comments