Size returns the size of the tree object.
()
| 21 | |
| 22 | // Size returns the size of the tree object. |
| 23 | func (tree Tree) Size() counts.Count32 { |
| 24 | return counts.NewCount32(uint64(len(tree.data))) |
| 25 | } |
| 26 | |
| 27 | // TreeEntry represents an entry in a Git tree object. Note that Name |
| 28 | // shares memory with the tree data that were originally read; i.e., |
no test coverage detected