MCPcopy Create free account
hub / github.com/cameron314/concurrentqueue / Node

Method Node

benchmarks/simplelockfree.h:159–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157
158 template<typename U>
159 Node(U&& item)
160 : next(0)
161 {
162 new (this->item()) T(std::forward<U>(item));
163 }
164
165 Node()
166 : next(0)

Callers

nothing calls this directly

Calls 1

itemMethod · 0.95

Tested by

no test coverage detected