-
-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Labels
c++involves C++ codeinvolves C++ codegood first issueSimple thing, suitable for newcomersSimple thing, suitable for newcomersimprovementimproves existing functionalityimproves existing functionalityproposalpending discussion about something to dopending discussion about something to do
Description
String views can reduce the amount of copy operations we have to do internally, e.g. for resolving fqons.
For example, string views could be helpful in this situation:
member_id = "modpack.path.to.Object";
std::vector<std::string> member_parts = util::split(member_id, '.');The 2nd line could be a vector string views instead of normal strings
Metadata
Metadata
Assignees
Labels
c++involves C++ codeinvolves C++ codegood first issueSimple thing, suitable for newcomersSimple thing, suitable for newcomersimprovementimproves existing functionalityimproves existing functionalityproposalpending discussion about something to dopending discussion about something to do