Less reports whether sr sorts before o. Invalid references blobs sort first.
(o SizedRef)
| 49 | |
| 50 | // Less reports whether sr sorts before o. Invalid references blobs sort first. |
| 51 | func (sr SizedRef) Less(o SizedRef) bool { |
| 52 | return sr.Ref.Less(o.Ref) |
| 53 | } |
| 54 | |
| 55 | func (sr SizedRef) Valid() bool { return sr.Ref.Valid() } |
| 56 |