Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/arrow
/ move_construct
Method
move_construct
cpp/src/arrow/util/aligned_storage.h:60–62 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
58
}
59
60
void move_construct(AlignedStorage* other) noexcept {
61
new (&data_) T(std::move(*other->get()));
62
}
63
64
void move_assign(AlignedStorage* other) noexcept { *get() = std::move(*other->get()); }
65
Callers
nothing calls this directly
Calls
1
get
Method · 0.45
Tested by
no test coverage detected