* * @brief: 用于与一般ChubbyGoMap作比较 */
| 341 | * @brief: 用于与一般ChubbyGoMap作比较 |
| 342 | */ |
| 343 | type BaseMap struct { |
| 344 | sync.Mutex |
| 345 | m map[string]interface{} |
| 346 | } |
| 347 | |
| 348 | func NewBaseMap() *BaseMap{ |
| 349 | return &BaseMap{ |
nothing calls this directly
no outgoing calls
no test coverage detected