We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf94c04 commit 40d882bCopy full SHA for 40d882b
IGC/AdaptorCommon/RayTracing/API/ADT/UnorderedMap.h
@@ -34,6 +34,8 @@ class UnorderedMap {
34
using const_reference_type = std::pair<const key_type &, const mapped_type &>;
35
36
UnorderedMap() = default;
37
+ UnorderedMap(Array<KeyT> &&keys, Array<ValueT> &&values)
38
+ : Keys(std::move(keys)), Values(std::move(values)) {}
39
40
void destroy() {
41
Keys.destroy();
0 commit comments