| 1346 | inline void MapExpr::Clear() { entries_.clear(); } |
| 1347 | |
| 1348 | inline void MapExpr::set_entries(std::vector<MapExprEntry> entries) { |
| 1349 | entries_ = std::move(entries); |
| 1350 | } |
| 1351 | |
| 1352 | inline void MapExpr::set_entries(absl::Span<MapExprEntry> entries) { |
| 1353 | entries_.clear(); |