\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
| 406 | /// \param[in] values dictionary values to add to memo. Type must match |
| 407 | /// builder type |
| 408 | Status InsertMemoValues(const Array& values) { |
| 409 | return memo_table_->InsertValues(values); |
| 410 | } |
| 411 | |
| 412 | /// \brief Append a whole dense array to the builder |
| 413 | template <typename T1 = T> |