Compare gives the result of a 3-way comparison a.Compare(b) = 1 => a > b a.Compare(b) = 0 => a == b a.Compare(b) = -1 => a < b
(c Comparable)
| 28 | // a.Compare(b) = 0 => a == b |
| 29 | // a.Compare(b) = -1 => a < b |
| 30 | Compare(c Comparable) int |
| 31 | } |
| 32 | |
| 33 | type rbcolor int |
no outgoing calls