a6c92f0a17
This reverts commit 9fae95860de510f6874810cf43efb83f101246ef.
11 lines
139 B
Rust
11 lines
139 B
Rust
#[doc="Interfaces used for comparison."]
|
|
|
|
iface ord {
|
|
fn lt(&&other: self) -> bool;
|
|
}
|
|
|
|
iface eq {
|
|
fn eq(&&other: self) -> bool;
|
|
}
|
|
|