| 412 | // Returns true, if assignment successful |
| 413 | template <typename Arg> |
| 414 | bool GetValue(Arg* value) const { |
| 415 | return this->template InternalVisit<bool>(AssignerOp<Arg>(value)); |
| 416 | } |
| 417 | |
| 418 | // Provides type names for internal logging. |
| 419 | static std::string TypeName(Type value_type); |
no outgoing calls