1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: Apache-2.0
12 // SizedDigest is a minimal Keep block locator: hash+size
13 type SizedDigest string
15 // Size returns the size of the data block, in bytes.
16 func (sd SizedDigest) Size() int64 {
17 n, _ := strconv.ParseInt(strings.Split(string(sd), "+")[1], 10, 64)