Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
store children as unordered set
  • Loading branch information
root authored and root committed Jan 25, 2023
commit f43806fb9d46335e05f7490b997675b010676ee3
7 changes: 6 additions & 1 deletion rootex/common/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ using Optional = std::optional<T>;
#include <vector>
/// std::vector
template <class T>
using Vector = std::vector<T>;
using Vector = std::vector<T>;

#include <unordered_set>
/// std::unordered_set
template <class T>
using Unordered_set = std::unordered_set<T>;

Vector<String> Split(const String& s, char delim);

Expand Down
Loading