container returns the container kind (list or map) of the entry.
()
| 331 | |
| 332 | // container returns the container kind (list or map) of the entry. |
| 333 | func (s *entrySizeEstimate) container() types.Kind { |
| 334 | if s == nil { |
| 335 | return types.UnknownKind |
| 336 | } |
| 337 | return s.containerKind |
| 338 | } |
| 339 | |
| 340 | // keySize returns the SizeEstimate for the key if one exists. |
| 341 | func (s *entrySizeEstimate) keySize() *SizeEstimate { |
no outgoing calls
no test coverage detected