diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-04-15 15:18:34 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-04 16:08:55 +0200 |
commit | 955d5affa857ec1f358c56da8fb1ff4ab6590704 (patch) | |
tree | b667ac9f6f62bff17ce032683c0eb09727660555 /editor/property_selector.cpp | |
parent | 7ebc866418b075df58cbe4e31fcf8b0c3acd70a1 (diff) | |
download | redot-engine-955d5affa857ec1f358c56da8fb1ff4ab6590704.tar.gz |
Reduce and prevent unnecessary random-access to `List`
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)
* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
Diffstat (limited to 'editor/property_selector.cpp')
-rw-r--r-- | editor/property_selector.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/editor/property_selector.cpp b/editor/property_selector.cpp index fceda52a3e..eef68d918a 100644 --- a/editor/property_selector.cpp +++ b/editor/property_selector.cpp @@ -299,20 +299,20 @@ void PropertySelector::_update_search() { desc += vformat(" %s(", mi.name); - for (int i = 0; i < mi.arguments.size(); i++) { - if (i > 0) { + for (List<PropertyInfo>::Iterator arg_itr = mi.arguments.begin(); arg_itr != mi.arguments.end(); ++arg_itr) { + if (arg_itr != mi.arguments.begin()) { desc += ", "; } - desc += mi.arguments[i].name; + desc += arg_itr->name; - if (mi.arguments[i].type == Variant::NIL) { + if (arg_itr->type == Variant::NIL) { desc += ": Variant"; - } else if (mi.arguments[i].name.contains(":")) { - desc += vformat(": %s", mi.arguments[i].name.get_slice(":", 1)); - mi.arguments[i].name = mi.arguments[i].name.get_slice(":", 0); + } else if (arg_itr->name.contains(":")) { + desc += vformat(": %s", arg_itr->name.get_slice(":", 1)); + arg_itr->name = arg_itr->name.get_slice(":", 0); } else { - desc += vformat(": %s", Variant::get_type_name(mi.arguments[i].type)); + desc += vformat(": %s", Variant::get_type_name(arg_itr->type)); } } |