rust/src/libcore/cmp.rs

11 lines
139 B
Rust
Raw Normal View History

#[doc="Interfaces used for comparison."]
iface ord {
fn lt(&&other: self) -> bool;
}
iface eq {
fn eq(&&other: self) -> bool;
}