summary refs log tree commit diff
path: root/src/libcore/cmp.rs
blob: 1bdf3b9909ac4f5ec5f5558fd3dc639e26d526ee (plain)
1
2
3
4
5
6
7
8
9
10
/// Interfaces used for comparison.

iface ord {
    fn lt(&&other: self) -> bool;
}

iface eq {
    fn eq(&&other: self) -> bool;
}