W creates and returns a new Extras containing a single write using the given range and data.
(base uint64, size uint64, id id.ID)
| 134 | // W creates and returns a new Extras containing a single write using the given |
| 135 | // range and data. |
| 136 | func W(base uint64, size uint64, id id.ID) *Extras { |
| 137 | e := &Extras{} |
| 138 | return e.W(base, size, id) |
| 139 | } |