\brief Insert values into the dictionary's memo, but do not append any indices. Can be used to initialize a new builder with known dictionary values \param[in] values dictionary values to add to memo. Type must match builder type
| 414 | /// \param[in] values dictionary values to add to memo. Type must match |
| 415 | /// builder type |
| 416 | Status InsertMemoValues(const Array& values) { |
| 417 | return memo_table_->InsertValues(values); |
| 418 | } |
| 419 | |
| 420 | /// \brief Append a whole dense array to the builder |
| 421 | template <typename T1 = T> |