Lines Matching defs:vector
71 PreferencesValue::PreferencesValue(std::vector<double> value)
76 PreferencesValue::PreferencesValue(std::vector<std::string> value)
81 PreferencesValue::PreferencesValue(std::vector<bool> value)
86 PreferencesValue::PreferencesValue(std::vector<uint8_t> value)
151 return std::holds_alternative<std::vector<double>>(value_);
156 return std::holds_alternative<std::vector<uint8_t>>(value_);
166 return std::holds_alternative<std::vector<std::string>>(value_);
171 return std::holds_alternative<std::vector<bool>>(value_);
209 PreferencesValue::operator std::vector<double>() const
211 return std::get<std::vector<double>>(value_);
214 PreferencesValue::operator std::vector<bool>() const
216 return std::get<std::vector<bool>>(value_);
219 PreferencesValue::operator std::vector<std::string>() const
221 return std::get<std::vector<std::string>>(value_);
224 PreferencesValue::operator std::vector<uint8_t>() const
226 return std::get<std::vector<uint8_t>>(value_);