MCPcopy Create free account
hub / github.com/Kitware/CMake / any

Method any

Utilities/cmcppdap/include/dap/any.h:84–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82
83template <typename T>
84inline any::any(const T& val) {
85 *this = val;
86}
87
88any::any(const any& other) noexcept : type(other.type) {
89 if (other.value != nullptr) {

Callers 1

testChecksFunction · 0.45

Calls 4

isInBufferMethod · 0.80
sizeMethod · 0.45
alignmentMethod · 0.45
copyConstructMethod · 0.45

Tested by 1

testChecksFunction · 0.36