◆ Add()
template<typename... Args>
| void duckdb::MultiFileConstantMap::Add |
( |
Args &&... |
args | ) |
|
|
inline |
53640 {
53641 constant_map.emplace_back(std::forward<Args>(args)...);
53642 }
◆ operator[]()
53643 {
53644 return constant_map[constant_index.index];
53645 }
◆ size()
| idx_t duckdb::MultiFileConstantMap::size |
( |
| ) |
const |
|
inline |
53646 {
53647 return constant_map.size();
53648 }
◆ begin() [1/2]
| iterator duckdb::MultiFileConstantMap::begin |
( |
| ) |
|
|
inline |
53650 {
53651 return constant_map.begin();
53652 }
◆ end() [1/2]
| iterator duckdb::MultiFileConstantMap::end |
( |
| ) |
|
|
inline |
53653 {
53654 return constant_map.end();
53655 }
◆ begin() [2/2]
| const_iterator duckdb::MultiFileConstantMap::begin |
( |
| ) |
const |
|
inline |
53656 {
53657 return constant_map.begin();
53658 }
◆ end() [2/2]
| const_iterator duckdb::MultiFileConstantMap::end |
( |
| ) |
const |
|
inline |
53659 {
53660 return constant_map.end();
53661 }
The documentation for this struct was generated from the following file:
- external/duckdb/duckdb.cpp