String returns a string representation of Item
()
| 59 | |
| 60 | // String returns a string representation of Item |
| 61 | func (item *Item) String() string { |
| 62 | return fmt.Sprintf("key=%q, version=%d, meta=%x", item.Key(), item.Version(), item.meta) |
| 63 | } |
| 64 | |
| 65 | // Key returns the key. |
| 66 | // |