(b Int)
| 11 | |
| 12 | // Int demonstrates implementing Comparable[C Comparable[C]] (Go 1.26 recursive generics). |
| 13 | type Int int |
| 14 | |
| 15 | func (a Int) Less(b Int) bool { |
| 16 | return a < b |
| 17 | } |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected