MCPcopy Create free account
hub / github.com/RenderKit/embree / KeyValue

Class KeyValue

common/algorithms/parallel_map.h:15–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13 {
14 /* key/value pair to build the map */
15 struct KeyValue
16 {
17 __forceinline KeyValue () {}
18
19 __forceinline KeyValue (const Key key, const Val val)
20 : key(key), val(val) {}
21
22 __forceinline operator Key() const {
23 return key;
24 }
25
26 public:
27 Key key;
28 Val val;
29 };
30
31 public:
32

Callers 1

initMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected