()
| 346 | } |
| 347 | |
| 348 | func NewBaseMap() *BaseMap{ |
| 349 | return &BaseMap{ |
| 350 | m: make(map[string]interface{}, 100), |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | func (myMap *BaseMap) BaseStore(k string, v interface{}) { |
| 355 | myMap.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected