func Contains(obj types.Identifiable) bool { _mutex.RLock() defer _mutex.RUnlock() _, found := _data[obj.GetId()] return found }
func Remove(obj types.Identifiable) { RemoveId(obj.GetId()) }