Returns -1 if a is less than b, returns 1 if a is greater than b, and returns 0 if a is equal to b.
(a, b K)
| 2357 | // Returns -1 if a is less than b, returns 1 if a is greater than b, |
| 2358 | // and returns 0 if a is equal to b. |
| 2359 | Compare(a, b K) int |
| 2360 | } |
| 2361 | |
| 2362 | // NewComparer returns the built-in comparer for a given key type. |
no outgoing calls