Changeset - r24160:11d435e4f43a
[Not reviewed]
master
0 1 0
Michael Lutz - 4 years ago 2020-04-25 20:41:19
michi@icosahedron.de
Codechange: [Script] Improve copying a list into another empty list.
1 file changed with 7 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/script/api/script_list.cpp
Show inline comments
 
@@ -554,18 +554,25 @@ void ScriptList::Sort(SorterType sorter,
 
}
 

	
 
void ScriptList::AddList(ScriptList *list)
 
{
 
	if (list == this) return;
 

	
 
	if (this->IsEmpty()) {
 
		/* If this is empty, we can just take the items of the other list as is. */
 
		this->items = list->items;
 
		this->buckets = list->buckets;
 
		this->modifications++;
 
	} else {
 
	ScriptListMap *list_items = &list->items;
 
	for (ScriptListMap::iterator iter = list_items->begin(); iter != list_items->end(); iter++) {
 
		this->AddItem((*iter).first);
 
		this->SetValue((*iter).first, (*iter).second);
 
	}
 
}
 
}
 

	
 
void ScriptList::SwapList(ScriptList *list)
 
{
 
	if (list == this) return;
 

	
 
	this->items.swap(list->items);
0 comments (0 inline, 0 general)