コード例 #1
0
ファイル: datastore.go プロジェクト: Cristofori/kmud
func Contains(obj types.Identifiable) bool {
	_mutex.RLock()
	defer _mutex.RUnlock()

	_, found := _data[obj.GetId()]
	return found
}
コード例 #2
0
ファイル: datastore.go プロジェクト: Cristofori/kmud
func Remove(obj types.Identifiable) {
	RemoveId(obj.GetId())
}