Ref is a reference to a Perkeep blob. It is used as a value type and supports equality (with ==) and the ability to use it as a map key.
| 37 | // It is used as a value type and supports equality (with ==) and the ability |
| 38 | // to use it as a map key. |
| 39 | type Ref struct { |
| 40 | digest digestType |
| 41 | } |
| 42 | |
| 43 | // SizedRef is like a Ref but includes a size. |
| 44 | // It should also be used as a value type and supports equality. |
no outgoing calls