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:61–63 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
59
}
60
61
void move_construct(AlignedStorage* other) noexcept {
62
new (&data_) T(std::move(*other->get()));
63
}
64
65
void move_assign(AlignedStorage* other) noexcept { *get() = std::move(*other->get()); }
66
Callers
nothing calls this directly
Calls
1
get
Method · 0.45
Tested by
no test coverage detected