| 130 | value& operator=(double v) { base::operator=(static_cast<float64>(v)); return *this; } |
| 131 | value& operator=(const char* v) { base::operator=(string(v)); return *this; } |
| 132 | value& operator=(const string& v) { base::operator=(v); return *this; } |
| 133 | value& operator=(string&& v) { base::operator=(std::move(v)); return *this; } |
| 134 | value& operator=(const binary& v) { base::operator=(v); return *this; } |
| 135 | value& operator=(binary&& v) { base::operator=(std::move(v)); return *this; } |