| 655 | ABSL_MUST_USE_RESULT std::vector<MapExprEntry> release_entries(); |
| 656 | |
| 657 | friend void swap(MapExpr& lhs, MapExpr& rhs) noexcept { |
| 658 | using std::swap; |
| 659 | swap(lhs.entries_, rhs.entries_); |
| 660 | } |
| 661 | |
| 662 | private: |
| 663 | friend class Expr; |
no test coverage detected